* use select instead of autocomplete for playout editor * use select instead of autocomplete for filler preset editor * reset selected collection when changing collection type * use select instead of autocomplete for multi collection editor * more select * more select controls
17 lines
381 B
C#
17 lines
381 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.Channels
|
|
{
|
|
public record ChannelViewModel(
|
|
int Id,
|
|
string Number,
|
|
string Name,
|
|
int FFmpegProfileId,
|
|
string Logo,
|
|
string PreferredLanguageCode,
|
|
StreamingMode StreamingMode,
|
|
int? WatermarkId,
|
|
int? FallbackFillerId,
|
|
int PlayoutCount);
|
|
}
|