using System.Linq; namespace Sony.Filtr.DeezerAPI.Model { public class UserResponse { public string id { get; set; } public string name { get; set; } public string link { get; set; } public string picture { get; set; } public string picture_small { get; set; } public string picture_medium { get; set; } public string picture_big { get; set; } public string country { get; set; } public string tracklist { get; set; } public string type { get; set; } } }