using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Ombi.Core.Models.Search.V2; namespace Ombi.Core { public interface ITVSearchEngineV2 { Task GetShowInformation(string tvdbid, CancellationToken token); Task GetShowByRequest(int requestId, CancellationToken token); Task> GetStreamInformation(int movieDbId, CancellationToken cancellationToken); } }