mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-06 13:02:23 -07: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);
|
|
}
|
|
}
|
|
} |