mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 15:06:26 +00:00
Fixed wrong type and name in SimpleTrack
This commit is contained in:
parent
adeac7b409
commit
7bb0cc6391
@ -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; }
|
||||||
|
Loading…
Reference in New Issue
Block a user