mirror of
https://github.com/Radarr/Radarr
synced 2026-04-14 07:20:50 +02:00
20 lines
No EOL
727 B
C#
20 lines
No EOL
727 B
C#
using NzbDrone.Core.Download;
|
|
|
|
namespace Lidarr.Api.V1.DownloadClient
|
|
{
|
|
public class DownloadClientModule : ProviderModuleBase<DownloadClientResource, IDownloadClient, DownloadClientDefinition>
|
|
{
|
|
public static readonly DownloadClientResourceMapper ResourceMapper = new DownloadClientResourceMapper();
|
|
|
|
public DownloadClientModule(IDownloadClientFactory downloadClientFactory)
|
|
: base(downloadClientFactory, "downloadclient", ResourceMapper)
|
|
{
|
|
}
|
|
|
|
protected override void Validate(DownloadClientDefinition definition, bool includeWarnings)
|
|
{
|
|
if (!definition.Enable) return;
|
|
base.Validate(definition, includeWarnings);
|
|
}
|
|
}
|
|
} |