FurinaImpact/FurinaImpact.Common/Data/Excel/Attributes/ExcelAttribute.cs
2023-12-09 06:45:08 +03:00

16 lines
403 B
C#

using FurinaImpact.Common.Data.Excel;
namespace FurinaImpact.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;
}
}