mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
eddbd4a97b
New: Separated priorities for new and old episodes when sent to SABnzbd
12 lines
284 B
C#
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);
|
|
}
|
|
}
|