namespace Strata.SqlTools.SqlBreakdown.Classes;
///
/// Represents a SQL table with its expression and alias.
///
public class SqlTable
{
///
/// Initializes a new instance of the class.
///
/// The table expression.
/// The table alias.
public SqlTable(string tableExpression, string tableAlias)
{
TableExpression = tableExpression;
TableAlias = tableAlias;
}
///
/// Gets the table expression.
///
public string TableExpression { get; }
///
/// Gets the table alias.
///
public string TableAlias { get; }
}