* add duration tail options to schedule items editor * add naive filler scheduling * fix duration item length in xmltv * show offline image for unfilled duration tail * fix tests * update changelog * update dependencies
11 lines
152 B
C#
11 lines
152 B
C#
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public enum TailMode
|
|
{
|
|
None = 0,
|
|
Offline = 1,
|
|
Slate = 2,
|
|
Filler = 3
|
|
}
|
|
}
|