using System; namespace Gestor.Common.Helpers; [AttributeUsage(AttributeTargets.All)] public class OrderAttribute : Attribute { public int OrderProperty { get; private set; } public OrderAttribute(int orderProperty) { OrderProperty = orderProperty; } }