mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
Merged Mark's fork in
This commit is contained in:
parent
babe2735ee
commit
e2128d2235
14 changed files with 740 additions and 14 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue