2015-10-16 23:44:35 +01:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System;
|
2014-07-20 21:42:46 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2015-07-07 17:11:11 +01:00
|
|
|
|
namespace SpotifyAPI.Web.Models
|
2014-07-20 21:42:46 +01:00
|
|
|
|
{
|
|
|
|
|
public class FullAlbum : BasicModel
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("album_type")]
|
2016-03-31 11:08:23 +01:00
|
|
|
|
public string AlbumType { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2014-07-20 21:42:46 +01:00
|
|
|
|
[JsonProperty("artists")]
|
|
|
|
|
public List<SimpleArtist> Artists { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2014-07-20 21:42:46 +01:00
|
|
|
|
[JsonProperty("available_markets")]
|
2016-03-31 11:08:23 +01:00
|
|
|
|
public List<string> AvailableMarkets { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2014-12-04 17:18:11 +00:00
|
|
|
|
[JsonProperty("copyrights")]
|
|
|
|
|
public List<Copyright> Copyrights { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2014-07-20 21:42:46 +01:00
|
|
|
|
[JsonProperty("external_ids")]
|
2016-03-31 11:08:23 +01:00
|
|
|
|
public Dictionary<string, string> ExternalIds { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2014-07-20 21:42:46 +01:00
|
|
|
|
[JsonProperty("external_urls")]
|
2016-03-31 11:08:23 +01:00
|
|
|
|
public Dictionary<string, string> ExternalUrls { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2014-07-20 21:42:46 +01:00
|
|
|
|
[JsonProperty("genres")]
|
2016-03-31 11:08:23 +01:00
|
|
|
|
public List<string> Genres { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2014-07-20 21:42:46 +01:00
|
|
|
|
[JsonProperty("href")]
|
2016-03-31 11:08:23 +01:00
|
|
|
|
public string Href { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2014-07-20 21:42:46 +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
|
|
|
|
|
2014-07-20 21:42:46 +01:00
|
|
|
|
[JsonProperty("images")]
|
|
|
|
|
public List<Image> Images { get; set; }
|
2017-11-19 15:53:07 +00:00
|
|
|
|
|
|
|
|
|
[JsonProperty("label")]
|
|
|
|
|
public string Label { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2014-07-20 21:42:46 +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
|
|
|
|
|
2014-07-20 21:42:46 +01:00
|
|
|
|
[JsonProperty("popularity")]
|
|
|
|
|
public int Popularity { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2014-07-20 21:42:46 +01:00
|
|
|
|
[JsonProperty("release_date")]
|
2016-03-31 11:08:23 +01:00
|
|
|
|
public string ReleaseDate { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2014-07-20 21:42:46 +01:00
|
|
|
|
[JsonProperty("release_date_precision")]
|
2016-03-31 11:08:23 +01:00
|
|
|
|
public string ReleaseDatePrecision { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2014-07-20 21:42:46 +01:00
|
|
|
|
[JsonProperty("tracks")]
|
|
|
|
|
public Paging<SimpleTrack> Tracks { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2014-07-20 21:42:46 +01:00
|
|
|
|
[JsonProperty("type")]
|
2016-03-31 11:08:23 +01:00
|
|
|
|
public string Type { get; set; }
|
2015-07-26 13:02:22 +01:00
|
|
|
|
|
2014-07-20 21:42:46 +01:00
|
|
|
|
[JsonProperty("uri")]
|
2016-03-31 11:08:23 +01:00
|
|
|
|
public string Uri { get; set; }
|
2014-07-20 21:42:46 +01:00
|
|
|
|
}
|
2017-11-19 15:53:07 +00:00
|
|
|
|
}
|