mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-19 22:04:56 -04:00
21 lines
550 B
C#
21 lines
550 B
C#
using FluentValidation;
|
|
using NzbDrone.Core.Configuration;
|
|
using NzbDrone.Core.Validation.Paths;
|
|
|
|
namespace Radarr.Api.V3.Config
|
|
{
|
|
public class DownloadClientConfigModule : RadarrConfigModule<DownloadClientConfigResource>
|
|
{
|
|
public DownloadClientConfigModule(IConfigService configService)
|
|
: base(configService)
|
|
{
|
|
|
|
}
|
|
|
|
protected override DownloadClientConfigResource ToResource(IConfigService model)
|
|
{
|
|
return DownloadClientConfigResourceMapper.ToResource(model);
|
|
}
|
|
}
|
|
}
|