namespace Strata.SqlTools.Rules.Rule.Expression;
///
/// Represents a binary rule expression with left and right operands.
///
public interface IBinary : IVisitable
{
///
/// Gets the left operand.
///
public Expression Left { get; }
///
/// Gets the right operand.
///
public Expression Right { get; }
///
/// Gets the type of rule expression.
///
public Type Type { get; }
}