2014-07-20 21:42:46 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2020-05-01 19:05:28 +01:00
|
|
|
namespace SpotifyAPI.Web
|
2014-07-20 21:42:46 +01:00
|
|
|
{
|
2020-05-01 19:05:28 +01:00
|
|
|
public class SimpleAlbum
|
2020-03-09 19:47:39 +00:00
|
|
|
{
|
|
|
|
public string AlbumGroup { get; set; }
|
|
|
|
public string AlbumType { get; set; }
|
|
|
|
public List<SimpleArtist> Artists { get; set; }
|
|
|
|
public List<string> AvailableMarkets { get; set; }
|
|
|
|
public Dictionary<string, string> ExternalUrls { get; set; }
|
|
|
|
public string Href { get; set; }
|
|
|
|
public string Id { get; set; }
|
|
|
|
public List<Image> Images { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string ReleaseDate { get; set; }
|
|
|
|
public string ReleaseDatePrecision { get; set; }
|
|
|
|
public Dictionary<string, string> Restrictions { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
public string Uri { get; set; }
|
|
|
|
}
|
2020-05-01 19:05:28 +01:00
|
|
|
}
|