using System.Collections.Generic; using System.Threading.Tasks; using Ombi.Api.TvMaze.Models; using Ombi.Api.TvMaze.Models.V2; namespace Ombi.Api.TvMaze { public interface ITvMazeApi { Task> EpisodeLookup(int showId); Task> GetSeasons(int id); Task> Search(string searchTerm); Task ShowLookup(int showId); Task ShowLookupByTheTvDbId(int theTvDbId); Task GetTvFullInformation(int id); } }