You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Api.TvMaze/ITvMazeApi.cs

15 lines
445 B

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<IEnumerable<TvMazeEpisodes>> EpisodeLookup(int showId);
Task<List<TvMazeSearch>> Search(string searchTerm);
Task<TvMazeShow> ShowLookup(int showId);
Task<TvMazeShow> ShowLookupByTheTvDbId(int theTvDbId);
}
}