Spotify.NET/SpotifyAPI.Web/Models/Response/CategoryPlaylistsResponse.cs
2023-05-27 22:28:31 +02:00

9 lines
174 B
C#

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