mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
19 lines
441 B
C#
19 lines
441 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace SpotifyAPI.Web.Models
|
|
{
|
|
public class SearchItem : BasicModel
|
|
{
|
|
[JsonProperty("artists")]
|
|
public Paging<FullArtist> Artists { get; set; }
|
|
|
|
[JsonProperty("albums")]
|
|
public Paging<SimpleAlbum> Albums { get; set; }
|
|
|
|
[JsonProperty("tracks")]
|
|
public Paging<FullTrack> Tracks { get; set; }
|
|
|
|
[JsonProperty("playlists")]
|
|
public Paging<SimplePlaylist> Playlists { get; set; }
|
|
}
|
|
} |