using System; using System.Net.Sockets; namespace SWRIS.Events { public class ClientDisconnectedEventArgs : EventArgs { public Socket ClientSocket { get; } public string IpAddress { get; } public ClientDisconnectedEventArgs(Socket clientSocket, string ipAddress) { ClientSocket = clientSocket; IpAddress = ipAddress; } } }