Files
2026-03-05 15:03:45 +08:00

10 lines
180 B
C#

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