1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00
Files
Radarr/src/Radarr.Api.V4/Config/DownloadClientConfigController.cs
T
2022-12-04 13:06:20 -06:00

20 lines
559 B
C#

using NzbDrone.Core.Configuration;
using Radarr.Http;
namespace Radarr.Api.V4.Config
{
[V4ApiController("config/downloadclient")]
public class DownloadClientConfigController : ConfigController<DownloadClientConfigResource>
{
public DownloadClientConfigController(IConfigService configService)
: base(configService)
{
}
protected override DownloadClientConfigResource ToResource(IConfigService model)
{
return DownloadClientConfigResourceMapper.ToResource(model);
}
}
}