Backend/e-suite.Workflow.Core/Enums/RuleOperator.cs

13 lines
192 B
C#

namespace e_suite.Workflow.Core.Enums;
public enum RuleOperator
{
All,
Any,
CountAtLeast,
CountExactly,
FilterByRaci,
FilterByOutcome,
And,
Or
}