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.
19 lines
485 B
19 lines
485 B
namespace ErsatzTV.Core.Scheduling; |
|
|
|
public enum PlayoutBuildMode |
|
{ |
|
/// <summary> |
|
/// Continue building the playout into the future, without changing any existing playout items |
|
/// </summary> |
|
Continue = 1, |
|
|
|
/// <summary> |
|
/// Rebuild the playout while attempting to maintain collection progress |
|
/// </summary> |
|
Refresh = 2, |
|
|
|
/// <summary> |
|
/// Rebuild the playout from scratch (clearing all state) |
|
/// </summary> |
|
Reset = 3 |
|
}
|
|
|