namespace Terminal.Gui.App; /// Event arguments for events about public class SessionTokenEventArgs : EventArgs { /// Creates a new instance of the class /// public SessionTokenEventArgs (SessionToken state) { State = state; } /// The state being reported on by the event public SessionToken State { get; } }