using Newtonsoft.Json; namespace BlizzSharp.Data { // {"auc":527048554,"item":152507,"owner":"Fîrî","ownerRealm":"Arygos","bid":800100,"buyout":835000,"quantity":1,"timeLeft":"VERY_LONG","rand":0,"seed":0,"context":0} public class Auction { [JsonProperty("auc")] public long Id {get;set;} [JsonProperty("item")] public long Item{get;set;} [JsonProperty("owner")] public string Owner {get;set;} [JsonProperty("ownerRealm")] public string OwnerRealm {get;set;} [JsonProperty("bid")] public long Bid {get;set;} [JsonProperty("buyout")] public long Buyout {get;set;} [JsonProperty("quantity")] public int quantity {get;set;} [JsonProperty("timeLeft")] public string TimeLeft {get;set;} } }