BooleanValueData just has a bool value and Guid variable.
Anything that uses BooleanValueData should ACTUALLY use BooleanConditionData for the ability to use more complex logic.
|
public class BooleanConditionData { |
|
public BooleanConditionData? Not { get; set; } |
|
public BooleanValueData? Value {get; set; } |
|
// public BooleanConditionData[]? And { get; set; } |
|
// public BooleanConditionData[]? Or { get; set; } |
|
// public ComparisonData? Comparison { get; set; } |
|
} |
BooleanValueDatajust has aboolvalue andGuidvariable.Anything that uses
BooleanValueDatashould ACTUALLY useBooleanConditionDatafor the ability to use more complex logic.DemonCastle/DemonCastle.Files/Conditions/EntityStateTransitionEvent.cs
Lines 14 to 20 in 74f002d