mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
6d46819972
Fixed: In Queue check is more accurate
13 lines
291 B
C#
13 lines
291 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public interface IDownloadClient
|
|
{
|
|
void DownloadNzb(RemoteEpisode remoteEpisode);
|
|
bool IsConfigured { get; }
|
|
IEnumerable<QueueItem> GetQueue();
|
|
}
|
|
}
|