* add checkbox to include block items in program guide * evenly divide epg time for schedule blocks
14 lines
341 B
C#
14 lines
341 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.Scheduling;
|
|
|
|
public record ReplaceBlockItem(
|
|
int Index,
|
|
ProgramScheduleItemCollectionType CollectionType,
|
|
int? CollectionId,
|
|
int? MultiCollectionId,
|
|
int? SmartCollectionId,
|
|
int? MediaItemId,
|
|
PlaybackOrder PlaybackOrder,
|
|
bool IncludeInProgramGuide);
|