chore: initial git load of code space
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
namespace Strata.SqlTools.Rules.Rule.Expression;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a binary rule expression with left and right operands.
|
||||
/// </summary>
|
||||
public interface IBinary : IVisitable
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the left operand.
|
||||
/// </summary>
|
||||
public Expression Left { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the right operand.
|
||||
/// </summary>
|
||||
public Expression Right { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the type of rule expression.
|
||||
/// </summary>
|
||||
public Type Type { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user