public GwMatchupObjective(GwMatchupDetails details, GwMatchupMap map, string id, string name, GwMatchupTeam owner) { Details = details; Map = map; Id = id; Name = name; Owner = owner; }
public GwMatchupMap(GwMatchupDetails details, string type, List <int> score) { Details = details; Type = type; Score = new GwMatchupScore(score); }