Spotify.NET/SpotifyAPI.Web/Models/Category.cs
2018-08-24 14:10:13 +02:00

21 lines
455 B
C#

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