using System; namespace PepperDash.Essentials.WebSocketServer { /// /// Event Args for ConnectionClosed event /// public class ConnectionClosedEventArgs : EventArgs { /// /// Client ID that is being closed /// public string ClientId { get; private set; } /// /// Initalize an instance of the class. /// /// client that's closing public ConnectionClosedEventArgs(string clientId) { ClientId = clientId; } } }