using System.Linq; namespace Sony.Filtr.DeezerAPI.Model { public class UserDeezerPlaylist { public long id { get; set; } public string title { get; set; } public int duration { get; set; } public bool @public { get; set; } public bool is_loved_track { get; set; } public bool collaborative { get; set; } public int rating { get; set; } public int nb_tracks { get; set; } public string link { get; set; } public string picture { get; set; } public string checksum { get; set; } public string tracklist { get; set; } public Creator creator { get; set; } public string type { get; set; } } }