using System; using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models { public class SpotifyAlbum { public string album_type { get; set; } public SpotifyExternalUrls external_urls { get; set; } public SpotifyExternalIds external_ids { get; set; } public string href { get; set; } public string id { get; set; } public string name { get; set; } public string type { get; set; } public string uri { get; set; } public string label { get; set; } public int popularity { get; set; } public string release_date { get; set; } public string release_date_precision { get; set; } public int total_tracks { get; set; } public List images { get; set; } public List available_markets { get; set; } public List artists { get; set; } public List copyrights { get; set; } public SpotifyAlbumTracks tracks { get; set; } } public class SpotifyAlbumTracks : SpotifyTracks { } }