2013-04-15 01:41:39 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-07-08 03:15:15 +00:00
|
|
|
|
using NzbDrone.Core.Parser.Model;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
2013-03-05 05:33:34 +00:00
|
|
|
|
namespace NzbDrone.Core.Download
|
2012-02-07 05:08:07 +00:00
|
|
|
|
{
|
|
|
|
|
public interface IDownloadClient
|
|
|
|
|
{
|
2013-08-17 23:27:18 +00:00
|
|
|
|
void DownloadNzb(RemoteEpisode remoteEpisode);
|
2013-07-31 05:49:41 +00:00
|
|
|
|
bool IsConfigured { get; }
|
2013-04-15 01:41:39 +00:00
|
|
|
|
IEnumerable<QueueItem> GetQueue();
|
2012-02-07 05:08:07 +00:00
|
|
|
|
}
|
2013-04-15 01:41:39 +00:00
|
|
|
|
|
2012-02-07 05:08:07 +00:00
|
|
|
|
}
|