2010-09-28 08:58:49 +03:00
|
|
|
namespace NzbDrone.Core.Providers
|
2010-09-25 19:26:31 +03:00
|
|
|
{
|
2010-09-28 07:25:41 +03:00
|
|
|
public interface IDownloadProvider
|
2010-09-25 19:26:31 +03:00
|
|
|
{
|
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
|
2011-03-22 05:51:03 +02:00
|
|
|
bool AddById(string id, string title);
|
2010-09-25 19:26:31 +03:00
|
|
|
}
|
2010-09-28 08:58:49 +03:00
|
|
|
}
|