mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
28 lines
1017 B
C#
28 lines
1017 B
C#
using System.Collections.Generic;
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class FullPlaylist
|
|
{
|
|
public bool? Collaborative { get; set; }
|
|
public string? Description { get; set; } = default!;
|
|
public Dictionary<string, string>? ExternalUrls { get; set; } = default!;
|
|
public Followers Followers { get; set; } = default!;
|
|
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!;
|
|
|
|
/// <summary>
|
|
/// A list of PlaylistTracks, which items can be a FullTrack or FullEpisode
|
|
/// </summary>
|
|
/// <value></value>
|
|
public Paging<PlaylistTrack<BasePlayableItem>>? Tracks { get; set; } = default!;
|
|
public string? Type { get; set; } = default!;
|
|
public string? Uri { get; set; } = default!;
|
|
}
|
|
}
|
|
|