public UserKnowledgePicker(CSGORankEnum csgoRank, ValorantRankEnum valorantRank, double hoursPlayedCSGO, double hoursPlayedValorant)
 {
     this.CSGORank            = csgoRank;
     this.ValorantRank        = valorantRank;
     this.HoursPlayedCSGO     = hoursPlayedCSGO;
     this.HoursPlayedValorant = hoursPlayedValorant;
 }
Пример #2
0
 public GameResult(DateTime date, Score score, int kills, int assists, int deaths, int firstKills, int teamPlacement, int overallPlacement, CharactersEnum character, ValorantRankEnum valorantRank)
 {
     this.Date             = date;
     this.Score            = score;
     this.Kills            = kills;
     this.Assists          = assists;
     this.FirstKills       = firstKills;
     this.Deaths           = deaths;
     this.Character        = character;
     this.ValorantRank     = valorantRank;
     this.TeamPlacement    = teamPlacement;
     this.OverallPlacement = overallPlacement;
 }