* add template playout kind * add template scheduler count * implement pad to next * only allow resetting template playouts * update changelog
18 lines
456 B
C#
18 lines
456 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.Playouts;
|
|
|
|
public record PlayoutNameViewModel(
|
|
int PlayoutId,
|
|
ProgramSchedulePlayoutType PlayoutType,
|
|
string ChannelName,
|
|
string ChannelNumber,
|
|
ChannelProgressMode ProgressMode,
|
|
string ScheduleName,
|
|
string TemplateFile,
|
|
string ExternalJsonFile,
|
|
TimeSpan? DbDailyRebuildTime)
|
|
{
|
|
public Option<TimeSpan> DailyRebuildTime => Optional(DbDailyRebuildTime);
|
|
}
|