mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 07:26:28 +00:00
18 lines
576 B
C#
18 lines
576 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public interface IShowsClient
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716")]
|
|
Task<FullShow> Get(string showId);
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716")]
|
|
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);
|
|
}
|
|
}
|