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
{
[JsonProperty("artist")]
public SimpleArtist Artist { get; set; }
[JsonProperty("artists")]
public List<SimpleArtist> Artists { get; set; }
[JsonProperty("available_markets")]
public List<string> AvailableMarkets { get; set; }