mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
13 lines
468 B
C#
13 lines
468 B
C#
namespace SpotifyAPI.Web
|
|
{
|
|
public class SearchResponse
|
|
{
|
|
public Paging<FullArtist, SearchResponse> Artists { get; set; } = default!;
|
|
public Paging<SimpleAlbum, SearchResponse> Albums { get; set; } = default!;
|
|
public Paging<FullTrack, SearchResponse> Tracks { get; set; } = default!;
|
|
public Paging<SimpleShow, SearchResponse> Shows { get; set; } = default!;
|
|
public Paging<SimpleEpisode, SearchResponse> Episodes { get; set; } = default!;
|
|
}
|
|
}
|
|
|