namespace Terminal.Gui.Examples; /// /// Represents a sequence of keystrokes to inject during example demonstration or testing. /// public class DemoKeyStrokeSequence { /// /// Gets or sets the array of keystroke names to inject. /// Can include special "SetDelay:nnn" commands to change the delay between keys. /// public string [] KeyStrokes { get; set; } = []; /// /// Gets or sets the order in which this sequence should be executed. /// public int Order { get; set; } = 0; }