Skip to content

Commit d7538fb

Browse files
committed
Added Description and Followers to FullPlaylist, fixes #484
1 parent 0fb4858 commit d7538fb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

SpotifyAPI.Web/Models/Response/FullPlaylist.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ namespace SpotifyAPI.Web
44
public class FullPlaylist
55
{
66
public bool? Collaborative { get; set; }
7+
public string? Description { get; set; } = default!;
78
public Dictionary<string, string>? ExternalUrls { get; set; } = default!;
9+
public Followers Followers { get; set; } = default!;
810
public string? Href { get; set; } = default!;
911
public string? Id { get; set; } = default!;
1012
public List<Image>? Images { get; set; } = default!;

0 commit comments

Comments
 (0)