20 lines
433 B
C#
20 lines
433 B
C#
namespace ET
|
|
{
|
|
[Config]
|
|
public partial class StartZoneConfigCategory : ACategory<StartZoneConfig>
|
|
{
|
|
public static StartZoneConfigCategory Instance;
|
|
public StartZoneConfigCategory()
|
|
{
|
|
Instance = this;
|
|
}
|
|
}
|
|
|
|
public partial class StartZoneConfig : IConfig
|
|
{
|
|
public long Id { get; set; }
|
|
public string DBConnection;
|
|
public string DBName;
|
|
}
|
|
}
|