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