Files
ersatztv/ErsatzTV.Application/Playouts/Commands/UpdateSequentialPlayout.cs
T
Jason DoveandGitHub 53f281ce32 add xmltv block behavior setting (#2336)
* replace playout externaljsonfile and templatefile with schedulefile

* add scripted schedule-based playout

* wip - not functional yet

* temp disable scripted playout creation

* allow fast-forwarding block playouts

* add xmltv block behavior setting
2025-08-23 20:16:12 +00:00

7 lines
198 B
C#

using ErsatzTV.Core;
namespace ErsatzTV.Application.Playouts;
public record UpdateSequentialPlayout(int PlayoutId, string ScheduleFile)
: IRequest<Either<BaseError, PlayoutNameViewModel>>;