From 5559c84990e8e27a51d2f0bdb72c144cc632a069 Mon Sep 17 00:00:00 2001 From: Jonas Dellinger Date: Sun, 19 Nov 2017 16:53:07 +0100 Subject: [PATCH] Added label property to FullAlbum Fixes #199 --- SpotifyAPI/Web/Models/FullAlbum.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/SpotifyAPI/Web/Models/FullAlbum.cs b/SpotifyAPI/Web/Models/FullAlbum.cs index 14525f79..7ec612f4 100644 --- a/SpotifyAPI/Web/Models/FullAlbum.cs +++ b/SpotifyAPI/Web/Models/FullAlbum.cs @@ -35,6 +35,9 @@ namespace SpotifyAPI.Web.Models [JsonProperty("images")] public List Images { get; set; } + + [JsonProperty("label")] + public string Label { get; set; } [JsonProperty("name")] public string Name { get; set; } @@ -57,4 +60,4 @@ namespace SpotifyAPI.Web.Models [JsonProperty("uri")] public string Uri { get; set; } } -} \ No newline at end of file +}