* start to add program schedule alternates * edit days of the week * editor improvements * save changes * build playouts using alternate schedules * reset playout as needed * add priority message
10 lines
254 B
C#
10 lines
254 B
C#
namespace ErsatzTV.Application.Playouts;
|
|
|
|
public record PlayoutAlternateScheduleViewModel(
|
|
int Id,
|
|
int Index,
|
|
int ProgramScheduleId,
|
|
ICollection<DayOfWeek> DaysOfWeek,
|
|
ICollection<int> DaysOfMonth,
|
|
ICollection<int> MonthsOfYear);
|