1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 02:22:31 +01:00
Radarr/NzbDrone.Core/Providers/IDownloadProvider.cs

8 lines
328 B
C#
Raw Normal View History

2010-09-28 07:58:49 +02:00
namespace NzbDrone.Core.Providers
{
public interface IDownloadProvider
{
2010-09-28 07:35:15 +02:00
bool AddByUrl(string url, string title); //Should accept something other than string (NzbInfo?) returns success or failure
2010-09-28 07:58:49 +02:00
bool IsInQueue(string title); //Should accept something other than string (Episode?) returns bool
}
2010-09-28 07:58:49 +02:00
}