Fixed wrong type and name in SimpleTrack

This commit is contained in:
Johnny @PC 2016-04-01 13:22:30 +02:00
parent adeac7b409
commit 7bb0cc6391

View File

@ -6,8 +6,8 @@ namespace SpotifyAPI.Web.Models
{ {
public class SimpleTrack : BasicModel public class SimpleTrack : BasicModel
{ {
[JsonProperty("artist")] [JsonProperty("artists")]
public SimpleArtist Artist { get; set; } public List<SimpleArtist> Artists { get; set; }
[JsonProperty("available_markets")] [JsonProperty("available_markets")]
public List<string> AvailableMarkets { get; set; } public List<string> AvailableMarkets { get; set; }