mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-08 08:53:46 +00:00
9 lines
242 B
C#
9 lines
242 B
C#
namespace TcpSharp;
|
|
|
|
public class OnServerDataReceivedEventArgs : EventArgs
|
|
{
|
|
public TcpClient Client { get; internal set; }
|
|
public string ConnectionId { get; internal set; }
|
|
public byte[] Data { get; internal set; }
|
|
}
|