mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
1f95bcae4e
(cherry picked from commit 0feee191462dd3e5dde66e476e8b4b46a85ec4f0)
22 lines
669 B
C#
22 lines
669 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using NzbDrone.Common.Http;
|
|
using NzbDrone.Core.IndexerSearch.Definitions;
|
|
using NzbDrone.Core.Parser.Model;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public interface IIndexer : IProvider
|
|
{
|
|
bool SupportsRss { get; }
|
|
bool SupportsSearch { get; }
|
|
DownloadProtocol Protocol { get; }
|
|
|
|
Task<IList<ReleaseInfo>> FetchRecent();
|
|
Task<IList<ReleaseInfo>> Fetch(BookSearchCriteria searchCriteria);
|
|
Task<IList<ReleaseInfo>> Fetch(AuthorSearchCriteria searchCriteria);
|
|
HttpRequest GetDownloadRequest(string link);
|
|
}
|
|
}
|