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

9 lines
375 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
bool AddById(string id, string title);
}
2010-09-28 08:58:49 +03:00
}