using Infrastructure.Excel.Attributes; using System; using System.Collections.Generic; using System.Reflection; using System.Text; namespace Infrastructure.Excel { public class HeaderColumnInfo { public PropertyInfo Property { get; set; } public ExcelColumnAttribute Attribute { get; set; } } }