chore: initial git load of code space
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user