15 lines
290 B
C#
15 lines
290 B
C#
|
|
namespace Infrastructure.Utilities.Excel;
|
|||
|
|
|
|||
|
|
using System;
|
|||
|
|
|
|||
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|||
|
|
public class ExcelColumnAttribute : Attribute
|
|||
|
|
{
|
|||
|
|
public string HeaderName { get; }
|
|||
|
|
|
|||
|
|
public ExcelColumnAttribute(string headerName)
|
|||
|
|
{
|
|||
|
|
HeaderName = headerName;
|
|||
|
|
}
|
|||
|
|
}
|