summaryrefslogtreecommitdiff
path: root/Gestor.Common/Gestor.Common.Helpers/OrderAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Common/Gestor.Common.Helpers/OrderAttribute.cs')
-rw-r--r--Gestor.Common/Gestor.Common.Helpers/OrderAttribute.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/Gestor.Common/Gestor.Common.Helpers/OrderAttribute.cs b/Gestor.Common/Gestor.Common.Helpers/OrderAttribute.cs
deleted file mode 100644
index 58dba77..0000000
--- a/Gestor.Common/Gestor.Common.Helpers/OrderAttribute.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Common.Helpers
-{
- [AttributeUsage(AttributeTargets.All)]
- public class OrderAttribute : Attribute
- {
- public int OrderProperty
- {
- get;
- private set;
- }
-
- public OrderAttribute(int orderProperty)
- {
- this.OrderProperty = orderProperty;
- }
- }
-} \ No newline at end of file