mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
Added Description and Followers to FullPlaylist, fixes #484
This commit is contained in:
parent
0fb4858ba8
commit
d7538fb23a
@ -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!;
|
||||||
|
Loading…
Reference in New Issue
Block a user