что то неожиданно сломалось после рефакторинга

This commit is contained in:
2025-02-07 16:53:12 +03:00
parent 33ca84fb0d
commit 4a95cd84c1
34 changed files with 154 additions and 185 deletions
+3 -3
View File
@@ -5,13 +5,13 @@ public interface ICallRequest
Guid CallRequestId { get; internal set; }
int CommandId { get; }
int ObjectId { get; }
object Parameter { get; }
object? Parameter { get; }
}
public class DefaultCallRequest : ICallRequest
{
public Guid CallRequestId { get; set; } = Guid.NewGuid();
public int CommandId { get; set; }
public int ObjectId { get; set; } = -1;
public int CommandId { get; init; }
public int ObjectId { get; init; } = -1;
public object? Parameter { get; set; }
}