2015-02-12 23:23:07 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
2015-07-07 17:11:11 +01:00
|
|
|
|
namespace SpotifyAPI.Web.Models
|
2015-02-12 23:23:07 +00:00
|
|
|
|
{
|
|
|
|
|
public class Category : BasicModel
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("href")]
|
|
|
|
|
public String Href { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2015-02-12 23:23:07 +00:00
|
|
|
|
[JsonProperty("icons")]
|
|
|
|
|
public List<Image> Icons { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2015-02-12 23:23:07 +00:00
|
|
|
|
[JsonProperty("id")]
|
|
|
|
|
public String Id { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2015-02-12 23:23:07 +00:00
|
|
|
|
[JsonProperty("name")]
|
|
|
|
|
public String Name { get; set; }
|
|
|
|
|
}
|
2015-07-26 13:02:22 +01:00
|
|
|
|
}
|