* 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
7 lines
198 B
C#
7 lines
198 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.Playouts;
|
|
|
|
public record UpdateSequentialPlayout(int PlayoutId, string ScheduleFile)
|
|
: IRequest<Either<BaseError, PlayoutNameViewModel>>;
|