From d7538fb23a16b551cbc8ae8ec996ee120fa60682 Mon Sep 17 00:00:00 2001 From: Jonas Dellinger Date: Wed, 15 Jul 2020 21:11:40 +0200 Subject: [PATCH] Added Description and Followers to FullPlaylist, fixes #484 --- SpotifyAPI.Web/Models/Response/FullPlaylist.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SpotifyAPI.Web/Models/Response/FullPlaylist.cs b/SpotifyAPI.Web/Models/Response/FullPlaylist.cs index 01e02b7d..0a6bc643 100644 --- a/SpotifyAPI.Web/Models/Response/FullPlaylist.cs +++ b/SpotifyAPI.Web/Models/Response/FullPlaylist.cs @@ -4,7 +4,9 @@ namespace SpotifyAPI.Web public class FullPlaylist { public bool? Collaborative { get; set; } + public string? Description { get; set; } = default!; public Dictionary? ExternalUrls { get; set; } = default!; + public Followers Followers { get; set; } = default!; public string? Href { get; set; } = default!; public string? Id { get; set; } = default!; public List? Images { get; set; } = default!;