mirror of
https://github.com/Readarr/Readarr
synced 2026-01-05 23:26:12 +01:00
15 lines
465 B
C#
15 lines
465 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Parser.Model;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public interface IDownloadClient : IProvider
|
|
{
|
|
string DownloadNzb(RemoteEpisode remoteEpisode);
|
|
IEnumerable<QueueItem> GetQueue();
|
|
IEnumerable<HistoryItem> GetHistory(int start = 0, int limit = 0);
|
|
void RemoveFromQueue(string id);
|
|
void RemoveFromHistory(string id);
|
|
}
|
|
}
|