Spotify.NET/SpotifyAPI/Web/Models/SearchItem.cs

19 lines
483 B
C#
Raw Normal View History

using Newtonsoft.Json;
namespace SpotifyAPI.Web.Models
{
public class SearchItem : BasicModel
{
[JsonProperty("artists")]
public Paging<FullArtist> Artists { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("albums")]
public Paging<SimpleAlbum> Albums { get; set; }
2015-07-26 13:02:22 +01:00
[JsonProperty("tracks")]
public Paging<FullTrack> Tracks { get; set; }
[JsonProperty("playlists")]
public Paging<SimplePlaylist> Playlists { get; set; }
}
2015-07-26 13:02:22 +01:00
}