2020-05-03 00:00:35 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
|
|
|
public class FullPlaylist
|
|
|
|
{
|
2020-05-08 09:25:33 +01:00
|
|
|
public bool Collaborative { get; set; }
|
|
|
|
public Dictionary<string, string> ExternalUrls { get; set; }
|
|
|
|
public string Href { get; set; }
|
|
|
|
public string Id { get; set; }
|
|
|
|
public List<Image> Images { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public PublicUser Owner { get; set; }
|
|
|
|
public bool Public { get; set; }
|
|
|
|
public string SnapshotId { get; set; }
|
|
|
|
public Paging<PlaylistTrack<IPlayableItem>> Tracks { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
public string Uri { get; set; }
|
2020-05-03 00:00:35 +01:00
|
|
|
}
|
|
|
|
}
|