mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-25 22:37:27 -04:00
18 lines
489 B
C#
18 lines
489 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Indexers;
|
|
using NzbDrone.Core.Parser.Model;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public interface IDownloadClient : IProvider
|
|
{
|
|
DownloadProtocol Protocol { get; }
|
|
|
|
string Download(RemoteEpisode remoteEpisode);
|
|
IEnumerable<DownloadClientItem> GetItems();
|
|
void RemoveItem(string downloadId, bool deleteData);
|
|
DownloadClientStatus GetStatus();
|
|
}
|
|
}
|