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/QueryOp.cs

17 lines
451 B

namespace ZeroLevel.Patterns.Queries
{
public sealed class QueryOp :
BaseQuery
{
public readonly string FieldName;
public readonly object Value;
public readonly QueryOperation Operation;
public QueryOp(string fieldName, object value, QueryOperation operation)
{
this.FieldName = fieldName;
this.Value = value;
this.Operation = operation;
}
}
}

Powered by TurnKey Linux.