mirror of
https://github.com/Radarr/Radarr
synced 2026-01-27 01:43:15 +01:00
21 lines
No EOL
493 B
C#
21 lines
No EOL
493 B
C#
using System.Linq;
|
|
using System.Reflection;
|
|
using NzbDrone.Core.Configuration;
|
|
using Lidarr.Http;
|
|
|
|
namespace Lidarr.Api.V1.Config
|
|
{
|
|
public class UiConfigModule : LidarrConfigModule<UiConfigResource>
|
|
{
|
|
public UiConfigModule(IConfigService configService)
|
|
: base(configService)
|
|
{
|
|
|
|
}
|
|
|
|
protected override UiConfigResource ToResource(IConfigService model)
|
|
{
|
|
return UiConfigResourceMapper.ToResource(model);
|
|
}
|
|
}
|
|
} |