Files
ersatztv/ErsatzTV.Core/Domain/Scheduling/DecoBreakPlacement.cs
T
Jason DoveandGitHub 788a1ecdc4 add deco break content (#2446)
* add initial models

* migrations

* edit break content mode

* add and remove break content from ui

* use autocompletes in deco editor

* save break content to db

* allow break content playlists

* refactor default filler build

* fix slow startup

* start to implement adding break content

* use clone; try to fix block breaks

* fix updating history

* use consistent removebefore values

* cleanup logging

* only allow playlist break content

* update changelog
2025-09-19 18:48:51 +00:00

10 lines
170 B
C#

namespace ErsatzTV.Core.Domain.Scheduling;
public enum DecoBreakPlacement
{
BlockStart = 0,
BlockFinish = 1,
BetweenBlockItems = 2,
ChapterMarkers = 3
}