1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-21 08:51:43 +02:00
Radarr/NzbDrone.Core/Providers/DownloadClients/IDownloadClient.cs
Mark McDowall eddbd4a97b Renamed some settings, added 2nd priority for sab
New: Separated priorities for new and old episodes when sent to SABnzbd
2012-11-22 18:56:27 -08:00

12 lines
284 B
C#

using System.Linq;
using NzbDrone.Core.Model;
namespace NzbDrone.Core.Providers.DownloadClients
{
public interface IDownloadClient
{
bool IsInQueue(EpisodeParseResult newParseResult);
bool DownloadNzb(string url, string title, bool recentlyAired);
}
}