using NzbDrone.Core.Download; namespace NzbDrone.Api.DownloadClient { public class DownloadClientModule : ProviderModuleBase { public DownloadClientModule(IDownloadClientFactory downloadClientFactory) : base(downloadClientFactory, "downloadclient") { } protected override void Validate(DownloadClientDefinition definition, bool includeWarnings) { if (!definition.Enable) return; base.Validate(definition, includeWarnings); } } }