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

21 lines
455 B
C#
Raw Normal View History

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace SpotifyAPI.Web.Models
{
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
[JsonProperty("icons")]
public List<Image> Icons { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("id")]
2016-03-31 11:08:23 +01:00
public string Id { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("name")]
2016-03-31 11:08:23 +01:00
public string Name { get; set; }
}
2015-07-26 13:02:22 +01:00
}