Renamed all Core.Controllers to Core.Providers to avoid confusion between Core Controllers and MVC controllers

This commit is contained in:
Keivan
2010-09-27 21:25:41 -07:00
parent 9515c8788a
commit 01c1943d0e
24 changed files with 125 additions and 152 deletions

View 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
}
}