фикс номер 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 -2
View File
@@ -4,7 +4,7 @@ namespace mROA.Implementation;
public interface ICallRequest
{
Guid CallRequestId { get; }
Guid Id { get; }
int CommandId { get; }
int ObjectId { get; }
object? Parameter { get; }
@@ -12,7 +12,7 @@ public interface ICallRequest
public class DefaultCallRequest : ICallRequest
{
public Guid CallRequestId { get; set; } = Guid.NewGuid();
public Guid Id { get; set; } = Guid.NewGuid();
public int CommandId { get; init; }
public int ObjectId { get; init; } = -1;