Readarr/src/Lidarr.Api.V1/Config/DownloadClientConfigModule.cs
2017-10-30 21:28:29 -04:00

17 lines
No EOL
489 B
C#

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