Snowflake/RPG.GameCore/Excel/Attributes/ExcelTableAttribute.cs
2024-01-19 17:45:18 +03:00

14 lines
319 B
C#

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