using NzbDrone.Core.Configuration; namespace NzbDrone.Api.Config { public class DownloadClientConfigModule : NzbDroneConfigModule { public DownloadClientConfigModule(IConfigService configService) : base(configService) { } protected override DownloadClientConfigResource ToResource(IConfigService model) { return DownloadClientConfigResourceMapper.ToResource(model); } } }