using System.Linq; namespace Sony.Filtr.DeezerAPI.Model { public class Contributor { public int id { get; set; } public string name { get; set; } public string link { get; set; } public string share { get; set; } public string picture { get; set; } public bool radio { get; set; } public string tracklist { get; set; } public string role { get; set; } public string type { get; set; } } }