mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-02 00:34:37 +02:00
Renamed all Core.Controllers to Core.Providers to avoid confusion between Core Controllers and MVC controllers
This commit is contained in:
10
NzbDrone.Core/Providers/IDownloadProvider.cs
Normal file
10
NzbDrone.Core/Providers/IDownloadProvider.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using NzbDrone.Core.Repository;
|
||||
|
||||
namespace NzbDrone.Core.Providers
|
||||
{
|
||||
public interface IDownloadProvider
|
||||
{
|
||||
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