mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
542 B
24 lines
542 B
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 |
|
}
|
|
|