что то неожиданно сломалось после рефакторинга
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user