Spotify.NET/SpotifyAPI.Web/Models/Response/SearchResponse.cs
2020-05-03 22:34:03 +02:00

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; }
}
}