using System; namespace OpenMacroBoard.SDK { /// /// Is used for events that communicate connection changes. /// public class ConnectionEventArgs : EventArgs { /// /// Initializes a new instance of the class. /// public ConnectionEventArgs(bool newConnectionState) { NewConnectionState = newConnectionState; } /// /// The new connection state. /// public bool NewConnectionState { get; } } }