Lidarr/src/Lidarr.Api.V3/Config/DownloadClientConfigModule.cs

17 lines
489 B
C#
Raw Normal View History

2017-09-04 02:20:56 +00:00
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);
}
}
}