From ee54ea2ff2beda862a421cdd846685776cd62a1a Mon Sep 17 00:00:00 2001 From: "Johnny @PC" Date: Mon, 23 Mar 2015 16:35:36 +0100 Subject: [PATCH] Added "is_local" to the PlaylistTrack-Object --- SpotifyAPI/SpotifyWebAPI/Models/GeneralModels.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SpotifyAPI/SpotifyWebAPI/Models/GeneralModels.cs b/SpotifyAPI/SpotifyWebAPI/Models/GeneralModels.cs index 21472499..008ac7dc 100644 --- a/SpotifyAPI/SpotifyWebAPI/Models/GeneralModels.cs +++ b/SpotifyAPI/SpotifyWebAPI/Models/GeneralModels.cs @@ -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 {