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