Files
ersatztv/ErsatzTV.Application/Scheduling/Commands/ReplaceBlockItem.cs
T
Jason DoveandGitHub d55ba235bf evenly divide epg time for schedule blocks (#1607)
* add checkbox to include block items in program guide

* evenly divide epg time for schedule blocks
2024-02-10 20:59:29 -06:00

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);