using System;
namespace FastExcel
{
///
/// Add a custom name to the field
///
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
public class ExcelColumnAttribute : Attribute
{
///
/// Column name in Excel
///
public string Name { get; set; }
}
}