mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
12 lines
327 B
C#
12 lines
327 B
C#
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public class SearchResponse
|
||
|
{
|
||
|
public Paging<FullArtist> Artists { get; set; }
|
||
|
public Paging<SimpleAlbum> Albums { get; set; }
|
||
|
public Paging<FullTrack> Tracks { get; set; }
|
||
|
public Paging<SimpleShow> Shows { get; set; }
|
||
|
public Paging<SimpleEpisode> Episodes { get; set; }
|
||
|
}
|
||
|
}
|