using System.Collections.Generic; namespace SpotifyAPI.Web { public class FullAlbum { public string AlbumType { get; set; } = default!; public List Artists { get; set; } = default!; public List AvailableMarkets { get; set; } = default!; public List Copyrights { get; set; } = default!; public Dictionary ExternalIds { get; set; } = default!; public Dictionary ExternalUrls { get; set; } = default!; public List Genres { get; set; } = default!; public string Href { get; set; } = default!; public string Id { get; set; } = default!; public List 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 Restrictions { get; set; } = default!; public Paging Tracks { get; set; } = default!; public string Type { get; set; } = default!; public string Uri { get; set; } = default!; } }