using System.Threading.Tasks; namespace SpotifyAPI.Web { public interface IShowsClient { Task Get(string showId); Task Get(string showId, ShowRequest request); Task GetSeveral(ShowsRequest request); Task> GetEpisodes(string showId); Task> GetEpisodes(string showId, ShowEpisodesRequest request); } }