Added "is_local" to the PlaylistTrack-Object

This commit is contained in:
Johnny @PC 2015-03-23 16:35:36 +01:00
parent 2cc4f573f4
commit ee54ea2ff2

View File

@ -51,6 +51,8 @@ namespace SpotifyAPI.SpotifyWebAPI.Models
public PublicProfile AddedBy { get; set; }
[JsonProperty("track")]
public FullTrack Track { get; set; }
[JsonProperty("is_local")]
public Boolean IsLocal { get; set; }
}
public class CreatePlaylistArgs
{