namespace ErsatzTV.Core.Scheduling; public enum PlayoutBuildMode { /// /// Continue building the playout into the future, without changing any existing playout items /// Continue = 1, /// /// Rebuild the playout while attempting to maintain collection progress /// Refresh = 2, /// /// Rebuild the playout from scratch (clearing all state) /// Reset = 3 }