Radarr/src/NzbDrone.Core/Download/IDownloadClient.cs

18 lines
490 B
C#
Raw Normal View History

using System.Collections.Generic;
using NzbDrone.Core.Indexers;
using NzbDrone.Core.Parser.Model;
using NzbDrone.Core.ThingiProvider;
2013-03-05 05:33:34 +00:00
namespace NzbDrone.Core.Download
{
public interface IDownloadClient : IProvider
{
DownloadProtocol Protocol { get; }
string Download(RemoteMovie remoteMovie);
IEnumerable<DownloadClientItem> GetItems();
void RemoveItem(string downloadId, bool deleteData);
DownloadClientStatus GetStatus();
}
}