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