23 lines
536 B
C#
23 lines
536 B
C#
namespace HermesSocketServer
|
|
{
|
|
public class ServerConfiguration
|
|
{
|
|
public string Environment;
|
|
public WebsocketServerConfiguration WebsocketServer;
|
|
public DatabaseConfiguration Database;
|
|
public long OwnerId;
|
|
public string AdminPassword;
|
|
}
|
|
|
|
public class WebsocketServerConfiguration
|
|
{
|
|
public string Host;
|
|
public string Port;
|
|
}
|
|
|
|
public class DatabaseConfiguration
|
|
{
|
|
public string ConnectionString;
|
|
public int SaveDelayInSeconds;
|
|
}
|
|
} |