KafkaSR/RPG.GameCore/Excel/Attributes/ExcelTableAttribute.cs

15 lines
319 B
C#
Raw Normal View History

2024-01-29 23:49:21 +00:00
namespace RPG.GameCore.Excel.Attributes;
[AttributeUsage(AttributeTargets.Class)]
internal class ExcelTableAttribute : Attribute
{
public string Path { get; }
public ExcelType Type { get; }
public ExcelTableAttribute(string path, ExcelType type)
{
Path = path;
Type = type;
}
}