added SnapshotId to FullPlaylist (#227)

This commit is contained in:
Lukas Wagner 2018-03-20 12:30:09 +01:00 committed by Jonas Dellinger
parent 159b60331e
commit 3c25f49a94

View File

@ -36,6 +36,9 @@ namespace SpotifyAPI.Web.Models
[JsonProperty("public")] [JsonProperty("public")]
public Boolean Public { get; set; } public Boolean Public { get; set; }
[JsonProperty("snapshot_id")]
public string SnapshotId { get; set; }
[JsonProperty("tracks")] [JsonProperty("tracks")]
public Paging<PlaylistTrack> Tracks { get; set; } public Paging<PlaylistTrack> Tracks { get; set; }