using System; using System.Collections.Generic; using System.Linq; using System.Net.Sockets; using System.Text; using System.Threading.Tasks; namespace SWRIS.Events { public class ClientConnectedEventArgs : EventArgs { public Socket ClientSocket { get; } public string IpAddress { get; } public ClientConnectedEventArgs(Socket clientSocket, string ipAddress) { ClientSocket = clientSocket; IpAddress = ipAddress; } } }