mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
24 lines
835 B
C#
24 lines
835 B
C#
using System.Collections.Generic;
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
/// <summary>
|
|
/// <a href="https://developer.spotify.com/documentation/web-api/reference/object-model/#playlist-object-simplified">Docs</a>
|
|
/// </summary>
|
|
public class SimplePlaylist
|
|
{
|
|
public bool Collaborative { get; set; }
|
|
public string Description { 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<IPlaylistItem>> Tracks { get; set; }
|
|
public string Type { get; set; }
|
|
public string Uri { get; set; }
|
|
}
|
|
}
|