1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-29 11:16:19 +00:00
Sonarr/NzbDrone.Core/Providers/IDownloadProvider.cs

8 lines
328 B
C#
Raw Normal View History

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