|
| 1 | +using Newtonsoft.Json; |
| 2 | +using System; |
| 3 | +using System.Collections.Generic; |
| 4 | +using System.Linq; |
| 5 | +using System.Text; |
| 6 | +using System.Threading.Tasks; |
| 7 | + |
| 8 | +namespace SteamWebAPI2.Models.DOTA2 |
| 9 | +{ |
| 10 | + public class MatchDetailResult |
| 11 | + { |
| 12 | + public IList<MatchPlayer> Players { get; set; } |
| 13 | + [JsonProperty(PropertyName = "radiant_win")] |
| 14 | + public bool RadiantWin { get; set; } |
| 15 | + public int Duration { get; set; } |
| 16 | + [JsonProperty(PropertyName = "start_time")] |
| 17 | + public int StartTime { get; set; } |
| 18 | + [JsonProperty(PropertyName = "match_id")] |
| 19 | + public int MatchId { get; set; } |
| 20 | + [JsonProperty(PropertyName = "match_seq_num")] |
| 21 | + public int MatchSequenceNumber { get; set; } |
| 22 | + [JsonProperty(PropertyName = "tower_status_radiant")] |
| 23 | + public int TowerStatusRadiant { get; set; } |
| 24 | + [JsonProperty(PropertyName = "tower_status_dire")] |
| 25 | + public int TowerStatusDire { get; set; } |
| 26 | + [JsonProperty(PropertyName = "barracks_status_radiant")] |
| 27 | + public int BarracksStatusRadiant { get; set; } |
| 28 | + [JsonProperty(PropertyName = "barracks_status_dire")] |
| 29 | + public int BarracksStatusDire { get; set; } |
| 30 | + public int Cluster { get; set; } |
| 31 | + [JsonProperty(PropertyName = "first_blood_time")] |
| 32 | + public int FirstBloodTime { get; set; } |
| 33 | + [JsonProperty(PropertyName = "lobby_type")] |
| 34 | + public int LobbyType { get; set; } |
| 35 | + [JsonProperty(PropertyName = "human_players")] |
| 36 | + public int HumanPlayers { get; set; } |
| 37 | + [JsonProperty(PropertyName = "league_id")] |
| 38 | + public int LeagueId { get; set; } |
| 39 | + [JsonProperty(PropertyName = "positive_votes")] |
| 40 | + public int PositiveVotes { get; set; } |
| 41 | + [JsonProperty(PropertyName = "negative_votes")] |
| 42 | + public int NegativeVotes { get; set; } |
| 43 | + [JsonProperty(PropertyName = "game_mode")] |
| 44 | + public int GameMode { get; set; } |
| 45 | + public int Engine { get; set; } |
| 46 | + [JsonProperty(PropertyName = "radiant_team_id")] |
| 47 | + public int RadiantTeamId { get; set; } |
| 48 | + [JsonProperty(PropertyName = "radiant_name")] |
| 49 | + public string RadiantName { get; set; } |
| 50 | + [JsonProperty(PropertyName = "radiant_logo")] |
| 51 | + public long RadiantLogo { get; set; } |
| 52 | + [JsonProperty(PropertyName = "radiant_team_complete")] |
| 53 | + public int RadiantTeamComplete { get; set; } |
| 54 | + [JsonProperty(PropertyName = "dire_team_id")] |
| 55 | + public int DireTeamId { get; set; } |
| 56 | + [JsonProperty(PropertyName = "dire_name")] |
| 57 | + public string DireName { get; set; } |
| 58 | + [JsonProperty(PropertyName = "dire_logo")] |
| 59 | + public long DireLogo { get; set; } |
| 60 | + [JsonProperty(PropertyName = "dire_team_complete")] |
| 61 | + public int DireTeamComplete { get; set; } |
| 62 | + [JsonProperty(PropertyName = "radiant_captain")] |
| 63 | + public int RadiantCaptain { get; set; } |
| 64 | + [JsonProperty(PropertyName = "dire_captain")] |
| 65 | + public int DireCaptain { get; set; } |
| 66 | + [JsonProperty(PropertyName = "picks_bans")] |
| 67 | + public IList<MatchPickBan> PicksAndBans { get; set; } |
| 68 | + } |
| 69 | +} |
0 commit comments