mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 07:47:54 +01:00
13 lines
483 B
C#
13 lines
483 B
C#
namespace Terminal.Gui.App;
|
|
|
|
/// <summary>Event arguments for events about <see cref="SessionToken"/></summary>
|
|
public class SessionTokenEventArgs : EventArgs
|
|
{
|
|
/// <summary>Creates a new instance of the <see cref="SessionTokenEventArgs"/> class</summary>
|
|
/// <param name="state"></param>
|
|
public SessionTokenEventArgs (SessionToken state) { State = state; }
|
|
|
|
/// <summary>The state being reported on by the event</summary>
|
|
public SessionToken State { get; }
|
|
}
|