mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 03:38:26 -07:00
Created SabControllerTest - Added AddByPath Test (Needs more work) Added, Episode, FeedItem, ItemInfo and Site classes to store information
14 lines
448 B
C#
14 lines
448 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using NzbDrone.Core.Repository;
|
|
|
|
namespace NzbDrone.Core.Controllers
|
|
{
|
|
public interface IDownloadClientController
|
|
{
|
|
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
|
|
}
|
|
}
|