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

17 lines
403 B
C#
Raw Normal View History

2023-12-09 03:45:08 +00:00
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;
}
}