CTT/Unity/Assets/Model/Module/Config/IConfig.cs

10 lines
133 B
C#

namespace ET
{
/// <summary>
/// 每个Config的基类
/// </summary>
public interface IConfig
{
long Id { get; set; }
}
}