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