Files
Prowlarr/src/Radarr.Api.V3/Config/DownloadClientConfigModule.cs
T
2019-12-04 19:28:34 -05:00

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);
}
}
}