Spotify.NET/SpotifyAPI.Web/Models/Category.cs

20 lines
400 B
C#
Raw Normal View History

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