Added Description and Followers to FullPlaylist, fixes #484

This commit is contained in:
Jonas Dellinger 2020-07-15 21:11:40 +02:00
parent 0fb4858ba8
commit d7538fb23a

View File

@ -4,7 +4,9 @@ namespace SpotifyAPI.Web
public class FullPlaylist public class FullPlaylist
{ {
public bool? Collaborative { get; set; } public bool? Collaborative { get; set; }
public string? Description { get; set; } = default!;
public Dictionary<string, string>? ExternalUrls { get; set; } = default!; public Dictionary<string, string>? ExternalUrls { get; set; } = default!;
public Followers Followers { get; set; } = default!;
public string? Href { get; set; } = default!; public string? Href { get; set; } = default!;
public string? Id { get; set; } = default!; public string? Id { get; set; } = default!;
public List<Image>? Images { get; set; } = default!; public List<Image>? Images { get; set; } = default!;