chore: initial git load of code space

This commit is contained in:
Thom Lamb
2026-05-12 08:52:33 -05:00
parent 9abada692f
commit 5e467bcc9c
384 changed files with 65960 additions and 2 deletions
@@ -0,0 +1,29 @@
namespace Strata.SqlTools.SqlBreakdown.Classes;
/// <summary>
/// Represents a SQL table with its expression and alias.
/// </summary>
public class SqlTable
{
/// <summary>
/// Initializes a new instance of the <see cref="SqlTable"/> class.
/// </summary>
/// <param name="tableExpression">The table expression.</param>
/// <param name="tableAlias">The table alias.</param>
public SqlTable(string tableExpression, string tableAlias)
{
TableExpression = tableExpression;
TableAlias = tableAlias;
}
/// <summary>
/// Gets the table expression.
/// </summary>
public string TableExpression { get; }
/// <summary>
/// Gets the table alias.
/// </summary>
public string TableAlias { get; }
}