- namespace Terminal.Gui;
- /// <summary>Event arguments for events about <see cref="RunState"/></summary>
- public class RunStateEventArgs : EventArgs
- {
- /// <summary>Creates a new instance of the <see cref="RunStateEventArgs"/> class</summary>
- /// <param name="state"></param>
- public RunStateEventArgs (RunState state) { State = state; }
- /// <summary>The state being reported on by the event</summary>
- public RunState State { get; }
- }
|