|
| 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 LiveLeagueGamePlayerDetail |
| 11 | + { |
| 12 | + [JsonProperty(PropertyName = "player_slot")] |
| 13 | + public int PlayerSlot { get; set; } |
| 14 | + [JsonProperty(PropertyName = "account_id")] |
| 15 | + public int AccountId { get; set; } |
| 16 | + [JsonProperty(PropertyName = "hero_id")] |
| 17 | + public int HeroId { get; set; } |
| 18 | + public int Kills { get; set; } |
| 19 | + public int Deaths { get; set; } |
| 20 | + public int Assists { get; set; } |
| 21 | + [JsonProperty(PropertyName = "last_hits")] |
| 22 | + public int LastHits { get; set; } |
| 23 | + public int Denies { get; set; } |
| 24 | + public int Gold { get; set; } |
| 25 | + public int Level { get; set; } |
| 26 | + [JsonProperty(PropertyName = "gold_per_min")] |
| 27 | + public int GoldPerMinute { get; set; } |
| 28 | + [JsonProperty(PropertyName = "xp_per_min")] |
| 29 | + public int ExperiencePerMinute { get; set; } |
| 30 | + [JsonProperty(PropertyName = "ultimate_state")] |
| 31 | + public int UltimateState { get; set; } |
| 32 | + [JsonProperty(PropertyName = "ultimate_cooldown")] |
| 33 | + public int UltimateCooldown { get; set; } |
| 34 | + public int Item0 { get; set; } |
| 35 | + public int Item1 { get; set; } |
| 36 | + public int Item2 { get; set; } |
| 37 | + public int Item3 { get; set; } |
| 38 | + public int Item4 { get; set; } |
| 39 | + public int Item5 { get; set; } |
| 40 | + [JsonProperty(PropertyName = "respawn_timer")] |
| 41 | + public int RespawnTimer { get; set; } |
| 42 | + [JsonProperty(PropertyName = "position_x")] |
| 43 | + public int PositionX { get; set; } |
| 44 | + [JsonProperty(PropertyName = "position_y")] |
| 45 | + public int PositionY { get; set; } |
| 46 | + [JsonProperty(PropertyName = "net_worth")] |
| 47 | + public int NetWorth { get; set; } |
| 48 | + } |
| 49 | +} |
0 commit comments