mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
22 lines
531 B
C#
22 lines
531 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace SpotifyAPI.SpotifyWebAPI.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; }
|
|||
|
}
|
|||
|
}
|