Files
Fishing2/Assets/Scripts/Configs~/Cache/TableNameAttribute.cs
2025-10-10 17:57:36 +08:00

17 lines
330 B
C#

using System;
namespace NBF
{
[AttributeUsage(AttributeTargets.Class)]
public class TableNameAttribute : Attribute
{
public string Name;
public string Key;
public TableNameAttribute(string name, string key = "id")
{
Name = name;
Key = key;
}
}
}