NahidaImpact/NahidaImpact.Common/Data/Excel/Attributes/ExcelAttribute.cs
2024-01-04 16:48:39 +03:00

16 lines
403 B
C#

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;
}
}