Spotify.NET/SpotifyAPI/Web/Models/FullPlaylist.cs

51 lines
1.3 KiB
C#
Raw Normal View History

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace SpotifyAPI.Web.Models
{
public class FullPlaylist : BasicModel
{
[JsonProperty("collaborative")]
public Boolean Collaborative { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("description")]
2016-03-31 11:08:23 +01:00
public string Description { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("external_urls")]
public Dictionary<string, string> ExternalUrls { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("followers")]
public Followers Followers { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("href")]
2016-03-31 11:08:23 +01:00
public string Href { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("id")]
2016-03-31 11:08:23 +01:00
public string Id { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("images")]
public List<Image> Images { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("name")]
2016-03-31 11:08:23 +01:00
public string Name { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("owner")]
public PublicProfile Owner { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("public")]
public Boolean Public { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("snapshot_id")]
public string SnapshotId { get; set; }
[JsonProperty("tracks")]
public Paging<PlaylistTrack> Tracks { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("type")]
2016-03-31 11:08:23 +01:00
public string Type { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("uri")]
2016-03-31 11:08:23 +01:00
public string Uri { get; set; }
}
2015-07-26 13:02:22 +01:00
}