mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +00:00
16 lines
408 B
C#
16 lines
408 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public interface IShowsClient
|
|
{
|
|
Task<FullShow> Get(string showId);
|
|
Task<FullShow> Get(string showId, ShowRequest request);
|
|
|
|
Task<ShowsResponse> GetSeveral(ShowsRequest request);
|
|
|
|
Task<Paging<SimpleEpisode>> GetEpisodes(string showId);
|
|
Task<Paging<SimpleEpisode>> GetEpisodes(string showId, ShowEpisodesRequest request);
|
|
}
|
|
}
|