mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 07:26:28 +00:00
20 lines
721 B
C#
20 lines
721 B
C#
using System.Collections.Generic;
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class FullPlaylist
|
|
{
|
|
public bool Collaborative { get; private set; }
|
|
public Dictionary<string, string> ExternalUrls { get; private set; }
|
|
public string Href { get; private set; }
|
|
public string Id { get; private set; }
|
|
public List<Image> Images { get; private set; }
|
|
public string Name { get; private set; }
|
|
public PublicUser Owner { get; private set; }
|
|
public bool Public { get; private set; }
|
|
public string SnapshotId { get; private set; }
|
|
public Paging<PlaylistTrack<IPlaylistItem>> Tracks { get; private set; }
|
|
public string Type { get; private set; }
|
|
public string Uri { get; private set; }
|
|
}
|
|
}
|