35 lines
1.0 KiB
C#
35 lines
1.0 KiB
C#
using ErsatzTV.Application.Artworks;
|
|
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.Channels;
|
|
|
|
public record CreateChannel(
|
|
string Name,
|
|
string Number,
|
|
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,
|
|
string PreferredSubtitleLanguageCode,
|
|
ChannelSubtitleMode SubtitleMode,
|
|
ChannelMusicVideoCreditsMode MusicVideoCreditsMode,
|
|
string MusicVideoCreditsTemplate,
|
|
ChannelSongVideoMode SongVideoMode,
|
|
ChannelTranscodeMode TranscodeMode,
|
|
ChannelIdleBehavior IdleBehavior,
|
|
bool IsEnabled,
|
|
bool ShowInEpg) : IRequest<Either<BaseError, CreateChannelResult>>;
|