2020-05-02 21:48:21 +01:00
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace SpotifyAPI.Web
|
|
|
|
{
|
|
|
|
public interface IShowsClient
|
|
|
|
{
|
2020-05-05 14:30:00 +01:00
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716")]
|
2020-05-02 21:48:21 +01:00
|
|
|
Task<FullShow> Get(string showId);
|
2020-05-05 14:30:00 +01:00
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716")]
|
2020-05-02 21:48:21 +01:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|