10 lines
180 B
C#
10 lines
180 B
C#
namespace NBF.ConfigTable
|
|
{
|
|
/// <summary>
|
|
/// 表示是一个配置文件
|
|
/// </summary>
|
|
public interface IConfigTable
|
|
{
|
|
public int Key { get; }
|
|
}
|
|
} |