Lidarr/src/Lidarr.Api.V1/Config/DownloadClientConfigControl...

20 lines
559 B
C#
Raw Normal View History

2021-08-04 20:42:40 +00:00
using Lidarr.Http;
2017-10-31 02:25:19 +00:00
using NzbDrone.Core.Configuration;
2017-09-04 02:20:56 +00:00
2017-10-31 01:28:29 +00:00
namespace Lidarr.Api.V1.Config
2017-09-04 02:20:56 +00:00
{
2021-08-04 20:42:40 +00:00
[V1ApiController("config/downloadclient")]
public class DownloadClientConfigController : ConfigController<DownloadClientConfigResource>
2017-09-04 02:20:56 +00:00
{
2021-08-04 20:42:40 +00:00
public DownloadClientConfigController(IConfigService configService)
2017-09-04 02:20:56 +00:00
: base(configService)
{
}
protected override DownloadClientConfigResource ToResource(IConfigService model)
{
return DownloadClientConfigResourceMapper.ToResource(model);
}
}
2017-10-31 02:25:19 +00:00
}