add option to stop scheduling before or after block duration end (#1563)

This commit is contained in:
Jason Dove
2024-01-16 12:53:56 -06:00
committed by GitHub
parent 4805d0d40f
commit 88fac0de04
16 changed files with 9931 additions and 7 deletions
@@ -1,3 +1,5 @@
using ErsatzTV.Core.Domain.Scheduling;
namespace ErsatzTV.Application.Scheduling;
public record BlockViewModel(int Id, string Name, int Minutes);
public record BlockViewModel(int Id, string Name, int Minutes, BlockStopScheduling StopScheduling);