2013-04-15 01:41:39 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
|
2013-03-05 05:33:34 +00:00
|
|
|
|
namespace NzbDrone.Core.Download
|
2012-02-07 05:08:07 +00:00
|
|
|
|
{
|
|
|
|
|
public interface IDownloadClient
|
|
|
|
|
{
|
2012-11-23 02:56:27 +00:00
|
|
|
|
bool DownloadNzb(string url, string title, bool recentlyAired);
|
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
|
|
|
|
}
|