using System.Collections.Generic; namespace SpotifyAPI.Web { public class SimpleAlbum { public string AlbumGroup { get; set; } = default!; public string AlbumType { get; set; } = default!; public List Artists { get; set; } = default!; public List AvailableMarkets { get; set; } = default!; public Dictionary ExternalUrls { get; set; } = default!; public string Href { get; set; } = default!; public string Id { get; set; } = default!; public List Images { get; set; } = default!; public string Name { get; set; } = default!; public string ReleaseDate { get; set; } = default!; public string ReleaseDatePrecision { get; set; } = default!; public Dictionary Restrictions { get; set; } = default!; public int TotalTracks { get; set; } public string Type { get; set; } = default!; public string Uri { get; set; } = default!; } }