Lidarr/src/NzbDrone.Core/Indexers/IIndexer.cs

19 lines
549 B
C#
Raw Normal View History

2013-04-10 23:44:48 +00:00
using System.Collections.Generic;
using NzbDrone.Core.IndexerSearch.Definitions;
using NzbDrone.Core.Parser.Model;
2013-09-22 05:20:26 +00:00
using NzbDrone.Core.ThingiProvider;
2013-04-10 23:44:48 +00:00
namespace NzbDrone.Core.Indexers
{
2013-09-22 05:20:26 +00:00
public interface IIndexer : IProvider
2013-04-10 23:44:48 +00:00
{
bool SupportsRss { get; }
bool SupportsSearch { get; }
DownloadProtocol Protocol { get; }
IList<ReleaseInfo> FetchRecent();
IList<ReleaseInfo> Fetch(AlbumSearchCriteria searchCriteria);
2017-07-20 02:34:16 +00:00
IList<ReleaseInfo> Fetch(ArtistSearchCriteria searchCriteria);
2013-04-10 23:44:48 +00:00
}
}