16 lines
403 B
C#
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;
|
|
}
|
|
}
|