using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models { public class SpotifyTrack { public SpotifyAlbum album { get; set; } public List artists { get; set; } public List available_markets { get; set; } public int disc_number { get; set; } public int duration_ms { get; set; } public bool @explicit { get; set; } public SpotifyExternalIds external_ids { get; set; } public SpotifyExternalUrls external_urls { get; set; } public string href { get; set; } public string id { get; set; } public bool? is_playable { get; set; } public SpotifyLinkedFrom linked_from { get; set; } public string name { get; set; } public int popularity { get; set; } public string preview_url { get; set; } public int track_number { get; set; } public string type { get; set; } public string uri { get; set; } } }