using System.Collections.Generic; using System.Linq; namespace Sony.Filtr.DeezerAPI.Model { public class UserPlaylistsResponse { public List data { get; set; } public string checksum { get; set; } public int total { get; set; } public string next { get; set; } } }