hawkeye camera support(not tested)
This commit is contained in:
@@ -9,6 +9,7 @@ public class BaseOperationDecorator
|
||||
_baseOperation = baseOperation;
|
||||
}
|
||||
|
||||
|
||||
public bool Result => Operation.Result;
|
||||
public string ResultString => Operation.ToString();
|
||||
public string TypeName => Operation.TypeName;
|
||||
@@ -21,4 +22,10 @@ public class BaseOperationDecorator
|
||||
public string ExecutionTimeString => Operation.ExecutionTimeString;
|
||||
|
||||
public BaseOperation Operation => _baseOperation;
|
||||
|
||||
public bool IsEnabled
|
||||
{
|
||||
get => _baseOperation.Enabled;
|
||||
set => _baseOperation.Enabled = value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user