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