Blizzard Api Wrapper for C#

1234567891011121314
  1. using System.Collections.Generic;
  2. using Newtonsoft.Json;
  3. namespace BlizzSharp.Data
  4. {
  5. public class AuctionRealm
  6. {
  7. [JsonProperty("name")]
  8. public string Name {get;set;}
  9. [JsonProperty("slug")]
  10. public string Slug {get;set;}
  11. }
  12. }