Added label property to FullAlbum

Fixes #199
This commit is contained in:
Jonas Dellinger 2017-11-19 16:53:07 +01:00 committed by GitHub
parent 26b5f8054d
commit 5559c84990
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,6 +35,9 @@ namespace SpotifyAPI.Web.Models
[JsonProperty("images")]
public List<Image> 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; }
}
}
}