using System.Collections.Generic; namespace Sony.Filtr.ApolloAPI.Models { public class SpotifyBrowsePlaylistsResponse { public string message { get; set; } public SpotifyBrowsePlaylists playlists { get; set; } } public class SpotifyBrowsePlaylists { public string href { get; set; } public List items { get; set; } public int limit { get; set; } public object next { get; set; } public int offset { get; set; } public object previous { get; set; } public int total { get; set; } } public class SpotifySimplifiedPlaylist { public bool collaborative { get; set; } public SpotifyExternalUrls external_urls { get; set; } public string href { get; set; } public string id { get; set; } public List images { get; set; } public string name { get; set; } public SpotifyOwner owner { get; set; } public bool? @public { get; set; } public SpotifyPlaylistTracks PlaylistTracks { get; set; } public string type { get; set; } public string uri { get; set; } public string snapshot_id { get; set; } } }