public WurmServerInfo(string name, string webStatsUrl, ServerGroup serverGroup) { if (name == null) throw new ArgumentNullException("name"); if (webStatsUrl == null) throw new ArgumentNullException("webStatsUrl"); this.Name = new ServerName(name); this.WebStatsUrl = webStatsUrl; this.ServerGroup = serverGroup; }
public WurmServerInfo(string name, string webStatsUrl, ServerGroup serverGroup) { if (name == null) { throw new ArgumentNullException(nameof(name)); } if (webStatsUrl == null) { throw new ArgumentNullException(nameof(webStatsUrl)); } ServerName = new ServerName(name); WebStatsUrl = webStatsUrl; ServerGroup = serverGroup; }
protected SkillDump(ServerGroup serverGroup) { ServerGroupId = serverGroup; }