1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-29 03:05:49 +00:00
Sonarr/NzbDrone.Core/Download/IDownloadClient.cs

12 lines
267 B
C#
Raw Normal View History

using System.Linq;
using NzbDrone.Core.Model;
2013-03-05 05:33:34 +00:00
namespace NzbDrone.Core.Download
{
public interface IDownloadClient
{
bool IsInQueue(EpisodeParseResult newParseResult);
bool DownloadNzb(string url, string title, bool recentlyAired);
}
}