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

12 lines
327 B
C#
Raw Normal View History

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