public GameMatchResult(string server, DateTime timestamp, GameMatchStats match) { Server = server; Timestamp = timestamp; Results = match; }
private IEnumerable <string> GetMatchPlayers(GameMatchStats stats) => stats.Scoreboard.Select(playerInfo => playerInfo.Name);