Initial commit

This commit is contained in:
Jason Dove
2021-02-08 21:13:53 -06:00
commit 4d52e115b5
493 changed files with 31399 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
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
}
}