Blizzard Api Wrapper for C#

AuctionResponse.cs 292B

1234567891011121314
  1. using System.Collections.Generic;
  2. using Newtonsoft.Json;
  3. namespace BlizzSharp.Data
  4. {
  5. public class AuctionResponse
  6. {
  7. [JsonProperty("realms")]
  8. public AuctionRealm[] Realms{get;set;}
  9. [JsonProperty("auctions")]
  10. public Auction[] Auctions{get;set;}
  11. }
  12. }