mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 23:42:00 +02:00
8 lines
214 B
C#
8 lines
214 B
C#
namespace RemSox.Networking;
|
|
|
|
public class TcpMessage
|
|
{
|
|
public string Type { get; set; } = string.Empty;
|
|
public string RequestId { get; set; } = string.Empty;
|
|
public byte[] Payload { get; set; } = [];
|
|
} |