Radarr/src/Sonarr.Api.V3/Config/DownloadClientConfigModule.cs
2017-09-05 23:00:26 -04:00

17 lines
No EOL
489 B
C#

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