сетевой вызов метода работает
This commit is contained in:
@@ -2,18 +2,16 @@
|
||||
|
||||
public interface ICallRequest
|
||||
{
|
||||
Guid CallRequestId { get; }
|
||||
Guid CallRequestId { get; internal set; }
|
||||
int CommandId { get; }
|
||||
int ClientId { get; }
|
||||
int ObjectId { get; }
|
||||
object Parameter { get; }
|
||||
}
|
||||
|
||||
public class JsonCallRequest : ICallRequest
|
||||
{
|
||||
public Guid CallRequestId { get; } = Guid.NewGuid();
|
||||
public Guid CallRequestId { get; set; } = Guid.NewGuid();
|
||||
public int CommandId { get; set; }
|
||||
public int ClientId { get; set; }
|
||||
public int ObjectId { get; set; } = -1;
|
||||
public object? Parameter { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user