An enum that defines unary operators used by the wiring expression system in the editor. It lists two operators: logical Not and arithmetic Negate.
namespace Grains.RazorDesigner.Wiring;
public enum UnaryOp
{
Not, // !
Negate, // -
}