mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Merged Mark's fork in
This commit is contained in:
@@ -2,12 +2,13 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using NzbDrone.Core.Repository;
|
||||
|
||||
namespace NzbDrone.Core.Controllers
|
||||
{
|
||||
public interface IDownloadClientController
|
||||
{
|
||||
string AddByUrl(string url); //Should accept something other than string (NzbInfo?) returns result if applicable
|
||||
bool IsInQueue(string goodName);//Should accept something other than string (Episode?) returns bool
|
||||
bool AddByUrl(ItemInfo nzb); //Should accept something other than string (NzbInfo?) returns success or failure
|
||||
bool IsInQueue(Episode episode);//Should accept something other than string (Episode?) returns bool
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user