You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
493 B
21 lines
493 B
using System.Linq;
|
|
using System.Reflection;
|
|
using NzbDrone.Core.Configuration;
|
|
using Lidarr.Http;
|
|
|
|
namespace Lidarr.Api.V3.Config
|
|
{
|
|
public class UiConfigModule : SonarrConfigModule<UiConfigResource>
|
|
{
|
|
public UiConfigModule(IConfigService configService)
|
|
: base(configService)
|
|
{
|
|
|
|
}
|
|
|
|
protected override UiConfigResource ToResource(IConfigService model)
|
|
{
|
|
return UiConfigResourceMapper.ToResource(model);
|
|
}
|
|
}
|
|
} |