Пример #1
0
 public Server(string endpoint, ServerInfo info)
 {
     this.info     = info;
     this.endpoint = endpoint;
 }
Пример #2
0
 public ServerInfo(string name, params string[] gameModes)
 {
     this = new ServerInfo(name, new List <string>(gameModes));
 }
Пример #3
0
 public void PutServerInfo(string endpoint, ServerInfo info)
 {
     databaseContext.PutServerInfo(endpoint, info);
 }