mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-05 20:42:19 -07:00
17 lines
430 B
C#
17 lines
430 B
C#
using NzbDrone.Core.Configuration;
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|