Files
Fishing2Server/Entity/Modules/ConfigTable/Interface/IConfigTable.cs
2025-11-11 17:43:11 +08:00

10 lines
181 B
C#

namespace NBF.ConfigTable
{
/// <summary>
/// 表示是一个配置文件
/// </summary>
public interface IConfigTable
{
public uint Key { get; }
}
}