Files
ersatztv/ErsatzTV.Core/Domain/PlayoutMode.cs
T
Jason DoveandGitHub c02b83d0d6 code cleanup (#743)
* update tools

* run code cleanup

* update dependencies
2022-04-19 17:47:18 -05:00

25 lines
542 B
C#

namespace ErsatzTV.Core.Domain;
public enum PlayoutMode
{
/// <summary>
/// Play items one after the other until a fixed start item is encountered
/// </summary>
Flood = 1,
/// <summary>
/// Play one item from the collection
/// </summary>
One = 2,
/// <summary>
/// Play a variable number of items from the collection
/// </summary>
Multiple = 3,
/// <summary>
/// Play however many items will fit in the specified duration
/// </summary>
Duration = 4
}