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

9 lines
157 B
C#

namespace SpotifyAPI.Web
{
public class CategoriesResponse
{
public Paging<Category, CategoriesResponse> Categories { get; set; } = default!;
}
}