mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 09:06:23 +02:00
Add TcpRpc server and client and split crypto code into multiple classes
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
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; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user