mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
f77a2feeef
* Stylecop Rules and Fixes
18 lines
430 B
C#
18 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);
|
|
}
|
|
}
|
|
}
|