feat(api): enrich channel list response

This commit is contained in:
2026-07-02 18:56:05 +02:00
parent 97b6c4bee7
commit 32c0d6a6d3
6 changed files with 116 additions and 3 deletions
@@ -5,8 +5,13 @@ namespace ErsatzTV.Core.Api.Channels;
public record ChannelResponseModel(
int Id,
string Number,
double SortNumber,
string Name,
string Group,
string Categories,
[property: JsonProperty("ffmpegProfile")]
string FFmpegProfile,
string Language,
string StreamingMode);
string StreamingMode,
bool IsEnabled,
bool ShowInEpg);