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; } } }