GET/PUT /api/settings/{ffmpeg,playout,xmltv,scanner,logging,ui,hdhr}
wrapping the existing MediatR settings handlers, plus custom resolution
list/create/delete under /api/settings/resolutions. String-enum OpenAPI
schemas extended to OutputFormatKind + LogEventLevel.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
6 lines
155 B
C#
6 lines
155 B
C#
namespace ErsatzTV.Core.Api.Settings;
|
|
|
|
#nullable enable
|
|
|
|
public record ResolutionResponseModel(int Id, string Name, int Width, int Height, bool IsCustom);
|