You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Queries/QueryOperation.cs

15 lines
231 B

namespace ZeroLevel.Patterns.Queries
{
public enum QueryOperation :
int
{
EQ = 0,
NEQ = 1,
GT = 2,
LT = 3,
GTE = 4,
LTE = 5,
IN = 6,
ALL = 7
}
}

Powered by TurnKey Linux.