Socket classes for Hermes

This commit is contained in:
Tom
2024-06-24 22:31:45 +00:00
commit d8522584c4
26 changed files with 434 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace HermesSocketLibrary.Socket.Data
{
public class RequestMessage
{
public string? Type { get; set; }
public IDictionary<string, object>? Data { get; set; }
public string? Nounce { get; set; }
}
}