using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Core.CustomAttributes { [AttributeUsage(AttributeTargets.Property)] public class PropertyIndexAttribute : Attribute { public int Index { get; set; } public PropertyIndexAttribute() { Index = 0; } public PropertyIndexAttribute(int index) : this() { Index = index; } } }