using System.Linq; namespace Sony.Filtr.DeezerAPI.Model { public class TrackItem { public long id { get; set; } public bool readable { get; set; } public string title { get; set; } public string link { get; set; } public string duration { get; set; } public string preview { get; set; } public Artist artist { get; set; } public Album album { get; set; } public string type { get; set; } } }