mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-13 03:13:53 +00:00
9 lines
260 B
C#
9 lines
260 B
C#
namespace TcpSharp;
|
|
|
|
public class OnClientReconnectedEventArgs : EventArgs
|
|
{
|
|
public IPAddress ServerIPAddress => IPAddress.Parse(ServerHost);
|
|
public string ServerHost { get; internal set; }
|
|
public int ServerPort { get; internal set; }
|
|
}
|