2015-10-16 23:44:35 +01:00
|
|
|
|
using Newtonsoft.Json;
|
2015-02-12 23:23:07 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
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")]
|
2016-03-31 11:08:23 +01:00
|
|
|
|
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")]
|
2016-03-31 11:08:23 +01:00
|
|
|
|
public string Id { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2015-02-12 23:23:07 +00:00
|
|
|
|
[JsonProperty("name")]
|
2016-03-31 11:08:23 +01:00
|
|
|
|
public string Name { get; set; }
|
2015-02-12 23:23:07 +00:00
|
|
|
|
}
|
2015-07-26 13:02:22 +01:00
|
|
|
|
}
|