From 7bb0cc6391c8f458c4e93f2224480eadad5163d6 Mon Sep 17 00:00:00 2001 From: "Johnny @PC" Date: Fri, 1 Apr 2016 13:22:30 +0200 Subject: [PATCH] Fixed wrong type and name in SimpleTrack --- SpotifyAPI/Web/Models/SimpleTrack.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SpotifyAPI/Web/Models/SimpleTrack.cs b/SpotifyAPI/Web/Models/SimpleTrack.cs index 8a1aae68..e0f4666e 100644 --- a/SpotifyAPI/Web/Models/SimpleTrack.cs +++ b/SpotifyAPI/Web/Models/SimpleTrack.cs @@ -6,8 +6,8 @@ namespace SpotifyAPI.Web.Models { public class SimpleTrack : BasicModel { - [JsonProperty("artist")] - public SimpleArtist Artist { get; set; } + [JsonProperty("artists")] + public List Artists { get; set; } [JsonProperty("available_markets")] public List AvailableMarkets { get; set; }