mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 07:26:28 +00:00
16 lines
451 B
C#
16 lines
451 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public interface IEpisodesClient
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716")]
|
|
Task<FullEpisode> Get(string episodeId);
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716")]
|
|
Task<FullEpisode> Get(string episodeId, EpisodeRequest request);
|
|
|
|
Task<EpisodesResponse> GetSeveral(EpisodesRequest request);
|
|
}
|
|
}
|