Radarr/src/NzbDrone.Core/Download/IDownloadClient.cs

16 lines
452 B
C#
Raw Normal View History

using System.Collections.Generic;
using NzbDrone.Core.Parser.Model;
2013-03-05 05:33:34 +00:00
namespace NzbDrone.Core.Download
{
public interface IDownloadClient
{
string DownloadNzb(RemoteEpisode remoteEpisode);
bool IsConfigured { get; }
IEnumerable<QueueItem> GetQueue();
2013-10-22 07:31:36 +00:00
IEnumerable<HistoryItem> GetHistory(int start = 0, int limit = 0);
void RemoveFromQueue(string id);
void RemoveFromHistory(string id);
}
}