mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
10 lines
211 B
C#
10 lines
211 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
{
|
|
public class CategoryList : BasicModel
|
|
{
|
|
[JsonProperty("categories")]
|
|
public Paging<Category> Categories { get; set; }
|
|
}
|
|
} |