mirror of
https://github.com/Readarr/Readarr
synced 2026-04-24 05:41:07 +02:00
13 lines
286 B
C#
13 lines
286 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NzbDrone.Core.Model;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public interface IDownloadClient
|
|
{
|
|
bool DownloadNzb(string url, string title, bool recentlyAired);
|
|
IEnumerable<QueueItem> GetQueue();
|
|
}
|
|
|
|
}
|