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

12 lines
220 B

namespace ZeroLevel.Patterns.Queries
{
public sealed class NotQuery : BaseQuery
{
public IQuery Query;
public NotQuery(IQuery query)
{
this.Query = query;
}
}
}

Powered by TurnKey Linux.