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