Files
Fishing2/Assets/Scripts/Configs/Cache/TableNameAttribute.cs
2025-05-10 12:49:47 +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;
}
}
}