mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
30 lines
1.2 KiB
C#
30 lines
1.2 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class FullAlbum
|
|
{
|
|
public string AlbumType { get; set; } = default!;
|
|
public List<SimpleArtist> Artists { get; set; } = default!;
|
|
public List<string> AvailableMarkets { get; set; } = default!;
|
|
public List<Copyright> Copyrights { get; set; } = default!;
|
|
public Dictionary<string, string> ExternalIds { get; set; } = default!;
|
|
public Dictionary<string, string> ExternalUrls { get; set; } = default!;
|
|
public List<string> Genres { get; set; } = default!;
|
|
public string Href { get; set; } = default!;
|
|
public string Id { get; set; } = default!;
|
|
public List<Image> Images { get; set; } = default!;
|
|
public string Label { get; set; } = default!;
|
|
public string Name { get; set; } = default!;
|
|
public int Popularity { get; set; }
|
|
public string ReleaseDate { get; set; } = default!;
|
|
public string ReleaseDatePrecision { get; set; } = default!;
|
|
public Dictionary<string, string> Restrictions { get; set; } = default!;
|
|
public int TotalTracks { get; set; }
|
|
public Paging<SimpleTrack> Tracks { get; set; } = default!;
|
|
public string Type { get; set; } = default!;
|
|
public string Uri { get; set; } = default!;
|
|
}
|
|
}
|
|
|