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

9 lines
176 B
C#

namespace SpotifyAPI.Web
{
public class CategoryPlaylistsResponse
{
public Paging<SimplePlaylist, CategoryPlaylistsResponse> Playlists { get; set; } = default!;
}
}