фикс номер 1: кажется дело было в выполненности таска приема

This commit is contained in:
2025-02-18 14:11:28 +03:00
parent bb994f6761
commit 6023f47212
9 changed files with 53 additions and 26 deletions
+2
View File
@@ -1,4 +1,5 @@
using System.Text.Json;
using System.Text.Json.Serialization;
using mROA.Abstract;
namespace mROA.Implementation;
@@ -6,6 +7,7 @@ namespace mROA.Implementation;
public class NetworkMessage
{
public Guid Id { get; set; }
[JsonConverter(typeof(JsonStringEnumConverter))]
public MessageType SchemaId { get; set; }
public byte[] Data { get; set; }
}