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