using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.CSV { [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)] public class CsvOrderAttribute : Attribute { public int Index { get; set; } public CsvOrderAttribute(int index) { Index = index; } } }