кодовая база для нового базового класса удаленного объекта

This commit is contained in:
2025-02-17 23:19:54 +03:00
parent 4ab508e54f
commit 7897557dbc
12 changed files with 118 additions and 43 deletions
+5 -2
View File
@@ -1,4 +1,6 @@
namespace mROA.Implementation;
using System.Text.Json.Serialization;
namespace mROA.Implementation;
public interface ICallRequest
{
@@ -14,6 +16,7 @@ public class DefaultCallRequest : ICallRequest
public int CommandId { get; init; }
public int ObjectId { get; init; } = -1;
public Type ParameterType { get; init; }
[JsonIgnore]
public Type? ParameterType { get; init; }
public object? Parameter { get; set; }
}