Removed redundent classes.

This commit is contained in:
Keivan
2010-09-27 22:35:15 -07:00
parent d18029fe5b
commit c7286863b0
8 changed files with 22 additions and 104 deletions

View File

@@ -4,7 +4,7 @@ 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
bool AddByUrl(string url, string title); //Should accept something other than string (NzbInfo?) returns success or failure
bool IsInQueue(string title);//Should accept something other than string (Episode?) returns bool
}
}