mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
49441bba95
Organised using statements alphabetically
21 lines
455 B
C#
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; }
|
|
}
|
|
} |