MatchStats
MatchStats Record
Sorry, too lazy to write proper, so here is the record.
C# |
---|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 | public record Stats(
long RoundsPlayed,
long PlayerKills,
long PlayerAssists,
long PlayerDeaths,
long AverageCombatScore,
long Plants,
long Defuses,
long EconomyRating,
long FirstBloods
);
public record Player(
string Puuid,
string GameName,
string TagLine,
string TeamId,
string Character,
bool Won,
int AccountLevel,
Stats Stats,
AbilityCasts AbilityCasts
);
public record MatchStats(
string MatchId,
string MapName,
string Pod,
string QueueId,
string SeasonId,
string WinningTeam,
List<Player> Players
);
|