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

14 lines
309 B

6 years ago
namespace ZeroLevel.Patterns.Queries
{
public sealed class AndQuery : BaseQuery
{
public readonly IQuery Left;
public readonly IQuery Right;
public AndQuery(IQuery left, IQuery right)
{
this.Left = left;
this.Right = right;
}
}
}

Powered by TurnKey Linux.