using System.Collections.Generic; using System.Linq; namespace Sony.Filtr.DeezerAPI.Model { public class TrackISRCResponse { public long 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 int duration { get; set; } public int track_position { get; set; } public int disk_number { get; set; } public int rank { 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; } } }