40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using System.Net;
|
|
using ErsatzTV.Application.Artworks;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.Channels;
|
|
|
|
public record ChannelViewModel(
|
|
int Id,
|
|
string Number,
|
|
string Name,
|
|
string Group,
|
|
string Categories,
|
|
int FFmpegProfileId,
|
|
double? SlugSeconds,
|
|
ArtworkContentTypeModel Logo,
|
|
ChannelStreamSelectorMode StreamSelectorMode,
|
|
string StreamSelector,
|
|
string PreferredAudioLanguageCode,
|
|
string PreferredAudioTitle,
|
|
ChannelPlayoutSource PlayoutSource,
|
|
ChannelPlayoutMode PlayoutMode,
|
|
int? MirrorSourceChannelId,
|
|
TimeSpan? PlayoutOffset,
|
|
StreamingMode StreamingMode,
|
|
int? WatermarkId,
|
|
int? FallbackFillerId,
|
|
int PlayoutCount,
|
|
string PreferredSubtitleLanguageCode,
|
|
ChannelSubtitleMode SubtitleMode,
|
|
ChannelMusicVideoCreditsMode MusicVideoCreditsMode,
|
|
string MusicVideoCreditsTemplate,
|
|
ChannelSongVideoMode SongVideoMode,
|
|
ChannelTranscodeMode TranscodeMode,
|
|
ChannelIdleBehavior IdleBehavior,
|
|
bool IsEnabled,
|
|
bool ShowInEpg)
|
|
{
|
|
public string WebEncodedName => WebUtility.UrlEncode(Name);
|
|
}
|