mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 10:17:47 +00:00
13 lines
292 B
C#
13 lines
292 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public interface IDownloadClient
|
|
{
|
|
bool DownloadNzb(RemoteEpisode remoteEpisode);
|
|
bool IsConfigured { get; }
|
|
IEnumerable<QueueItem> GetQueue();
|
|
}
|
|
|
|
}
|