1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-28 02:37:40 +00:00
Sonarr/NzbDrone.Core/Download/IDownloadClient.cs

14 lines
292 B
C#
Raw Normal View History

using System.Collections.Generic;
using NzbDrone.Core.Parser.Model;
2013-03-05 05:33:34 +00:00
namespace NzbDrone.Core.Download
{
public interface IDownloadClient
{
bool DownloadNzb(RemoteEpisode remoteEpisode);
bool IsConfigured { get; }
IEnumerable<QueueItem> GetQueue();
}
}