NahidaImpact/NahidaImpact.Common/Data/Excel/Attributes/ExcelAttribute.cs

17 lines
403 B
C#
Raw Normal View History

2024-01-04 13:48:39 +00:00
using NahidaImpact.Common.Data.Excel;
namespace NahidaImpact.Common.Data.Excel.Attributes;
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
internal class ExcelAttribute : Attribute
{
public ExcelType Type { get; }
public string AssetName { get; }
public ExcelAttribute(ExcelType type, string assetName)
{
Type = type;
AssetName = assetName;
}
}