add string comparisons to ConditionalComparison enum

This commit is contained in:
Michael Becker 2020-09-02 12:33:05 -04:00
parent 05888e5ec9
commit f1939214fb
No known key found for this signature in database
GPG Key ID: 506F54899E2BFED7

View File

@ -48,6 +48,9 @@ namespace MBS.Framework.Logic.Conditional
/// <summary>
/// Negates the conditional comparison.
/// </summary>
Not = 16
Not = 16,
StartsWith = 32,
EndsWith = 64,
Contains = 128
}
}