using System; using System.Collections.Generic; using System.Text; namespace Infrastructure.Excel.Attributes { [AttributeUsage(AttributeTargets.Property,Inherited =false)] public class ExcelColumnAttribute : Attribute { public string Name { get; set; } public bool Required { get; set; } public string Regex { get; set; } public string EnumKey { get; set; } public string[] Enums { get; set; } public string[] ParentHeaderNameList { get; set; } public int Sort { get; set; } } }