Radarr/src/NzbDrone.Api/Config/DownloadClientConfigModule.cs

18 lines
488 B
C#
Raw Normal View History

using NzbDrone.Core.Configuration;
namespace NzbDrone.Api.Config
{
public class DownloadClientConfigModule : NzbDroneConfigModule<DownloadClientConfigResource>
{
2018-11-23 07:03:32 +00:00
public DownloadClientConfigModule(IConfigService configService)
: base(configService)
2014-02-16 17:05:19 +00:00
{
}
protected override DownloadClientConfigResource ToResource(IConfigService model)
{
return DownloadClientConfigResourceMapper.ToResource(model);
}
}
2018-11-23 07:03:32 +00:00
}