6 lines
112 B
C#
6 lines
112 B
C#
namespace Core.Config;
|
|
public interface IConfig
|
|
{
|
|
ConfigType Type { get; }
|
|
int Identifier { get; }
|
|
}
|