mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +00:00
9 lines
137 B
C#
9 lines
137 B
C#
namespace SpotifyAPI.Web
|
|
{
|
|
public class CategoriesResponse
|
|
{
|
|
public Paging<Category> Categories { get; set; } = default!;
|
|
}
|
|
}
|
|
|