mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 17:22:54 -07:00
14 lines
No EOL
521 B
C#
14 lines
No EOL
521 B
C#
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Ombi.Core.Models.Search.V2;
|
|
|
|
namespace Ombi.Core
|
|
{
|
|
public interface ITVSearchEngineV2
|
|
{
|
|
Task<SearchFullInfoTvShowViewModel> GetShowInformation(string tvdbid, CancellationToken token);
|
|
Task<SearchFullInfoTvShowViewModel> GetShowByRequest(int requestId, CancellationToken token);
|
|
Task<IEnumerable<StreamingData>> GetStreamInformation(int movieDbId, CancellationToken cancellationToken);
|
|
}
|
|
} |