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

18 lines
487 B
C#

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