Spotify.NET/SpotifyAPI.Web/Models/Response/FeaturedPlaylistsResponse.cs

9 lines
176 B
C#
Raw Normal View History

2020-05-02 13:58:11 +01:00
namespace SpotifyAPI.Web
{
public class FeaturedPlaylistsResponse
{
public string Message { get; set; }
public Paging<SimplePlaylist> Playlists { get; set; }
2020-05-02 13:58:11 +01:00
}
}