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 +}