using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KssSmaPlaLib.DtoMapping.Attributes
{
///
/// Excel列レター属性(プロパティに付与)
///
[AttributeUsage(AttributeTargets.Property)]
public class ExcelColumnLetterAttribute : Attribute
{
///
/// Excel対応列レター
///
public string ColumnLetter { get; }
public ExcelColumnLetterAttribute(string columnLetter)
{
ColumnLetter = columnLetter;
}
}
}