Spotify.NET/SpotifyAPI.Web/Models/Response/CategoryPlaylistsResponse.cs
2020-05-25 18:00:47 +02:00

9 lines
149 B
C#

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