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,38 @@
namespace Strata.SqlTools.SqlBreakdown.Enums.SQL;
/// <summary>
/// Specifies ordinal position from the beginning.
/// </summary>
public enum PositionFromFront
{
/// <summary>
/// No position specified.
/// </summary>
None = -1,
/// <summary>
/// First position.
/// </summary>
First = 0,
/// <summary>
/// Second position.
/// </summary>
Second = 1,
/// <summary>
/// Third position.
/// </summary>
Third = 2,
/// <summary>
/// Fourth position.
/// </summary>
Fourth = 3,
/// <summary>
/// Fifth position.
/// </summary>
Fifth = 4
}