2013-04-15 04:41:39 +03:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
2012-02-07 08:08:07 +03:00
|
|
|
using NzbDrone.Core.Model;
|
2013-07-08 06:15:15 +03:00
|
|
|
using NzbDrone.Core.Parser.Model;
|
2012-02-07 08:08:07 +03:00
|
|
|
|
2013-03-05 08:33:34 +03:00
|
|
|
namespace NzbDrone.Core.Download
|
2012-02-07 08:08:07 +03:00
|
|
|
{
|
|
|
|
public interface IDownloadClient
|
|
|
|
{
|
2013-07-08 06:15:15 +03:00
|
|
|
bool DownloadNzb(RemoteEpisode remoteEpisode);
|
2013-04-15 04:41:39 +03:00
|
|
|
IEnumerable<QueueItem> GetQueue();
|
2012-02-07 08:08:07 +03:00
|
|
|
}
|
2013-04-15 04:41:39 +03:00
|
|
|
|
2012-02-07 08:08:07 +03:00
|
|
|
}
|