Spotify.NET/SpotifyAPI.Web/Models/Response/SearchResponse.cs

14 lines
552 B
C#
Raw Normal View History

namespace SpotifyAPI.Web
{
public class SearchResponse
{
2020-05-25 17:00:38 +01:00
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!;
2023-05-27 21:20:33 +01:00
public Paging<FullPlaylist, SearchResponse> Playlists { get; set; } = default!;
}
}
2020-05-25 17:00:38 +01:00