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