public Server(string endpoint, ServerInfo info) { this.info = info; this.endpoint = endpoint; }
public ServerInfo(string name, params string[] gameModes) { this = new ServerInfo(name, new List <string>(gameModes)); }
public void PutServerInfo(string endpoint, ServerInfo info) { databaseContext.PutServerInfo(endpoint, info); }