mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
17 lines
489 B
C#
17 lines
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);
|
|
}
|
|
}
|
|
} |