Files
Prowlarr/src/NzbDrone.Core/Download/IDownloadClient.cs
2013-10-22 22:36:40 -07:00

14 lines
368 B
C#

using System.Collections.Generic;
using NzbDrone.Core.Parser.Model;
namespace NzbDrone.Core.Download
{
public interface IDownloadClient
{
string DownloadNzb(RemoteEpisode remoteEpisode);
bool IsConfigured { get; }
IEnumerable<QueueItem> GetQueue();
IEnumerable<HistoryItem> GetHistory(int start = 0, int limit = 0);
}
}