mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 16:32:56 +01: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);
|
|
}
|
|
}
|