using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sony.Filtr.DeezerAPI.Model { public class TrackResponse { public string id { get; set; } public bool readable { get; set; } public string title { get; set; } public string isrc { get; set; } public string link { get; set; } public string share { get; set; } public string duration { get; set; } public int track_position { get; set; } public int disk_number { get; set; } public string rank { get; set; } public string release_date { get; set; } public bool explicit_lyrics { get; set; } public string preview { get; set; } public double bpm { get; set; } public double gain { get; set; } public List available_countries { get; set; } public List contributors { get; set; } public Artist artist { get; set; } public Album album { get; set; } public string type { get; set; } } }