2020-05-03 00:00:35 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
|
|
|
public class FullPlaylist
|
|
|
|
{
|
2020-07-13 15:03:19 +01:00
|
|
|
public bool? Collaborative { get; set; }
|
2020-07-15 20:11:40 +01:00
|
|
|
public string? Description { get; set; } = default!;
|
2020-07-13 15:03:19 +01:00
|
|
|
public Dictionary<string, string>? ExternalUrls { get; set; } = default!;
|
2020-07-15 20:11:40 +01:00
|
|
|
public Followers Followers { get; set; } = default!;
|
2020-07-13 15:03:19 +01:00
|
|
|
public string? Href { get; set; } = default!;
|
|
|
|
public string? Id { get; set; } = default!;
|
|
|
|
public List<Image>? Images { get; set; } = default!;
|
|
|
|
public string? Name { get; set; } = default!;
|
|
|
|
public PublicUser? Owner { get; set; } = default!;
|
|
|
|
public bool? Public { get; set; }
|
|
|
|
public string? SnapshotId { get; set; } = default!;
|
2020-06-06 16:43:49 +01:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// A list of PlaylistTracks, which items can be a FullTrack or FullEpisode
|
|
|
|
/// </summary>
|
|
|
|
/// <value></value>
|
2021-12-24 20:59:31 +00:00
|
|
|
public Paging<PlaylistTrack<BasePlayableItem>>? Tracks { get; set; } = default!;
|
2020-07-13 15:03:19 +01:00
|
|
|
public string? Type { get; set; } = default!;
|
|
|
|
public string? Uri { get; set; } = default!;
|
2020-05-03 00:00:35 +01:00
|
|
|
}
|
|
|
|
}
|
2020-05-25 17:00:38 +01:00
|
|
|
|