1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core/Providers/IDownloadProvider.cs

8 lines
328 B
C#
Raw Normal View History

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