using System.Linq; namespace Sony.Filtr.DeezerAPI.Model { public class Creator { public long id { get; set; } public string name { get; set; } public string tracklist { get; set; } public string type { get; set; } } }