Spotify.NET/SpotifyAPI/Web/Models/CategoryList.cs
Johnny Dellinger @PC b0f687c994 Rearranged models
2015-07-26 14:02:22 +02:00

10 lines
211 B
C#

using Newtonsoft.Json;
namespace SpotifyAPI.Web.Models
{
public class CategoryList : BasicModel
{
[JsonProperty("categories")]
public Paging<Category> Categories { get; set; }
}
}