src/SortOrder.psm1

<#
.SYNOPSIS
    Specifies how rows of data are sorted.
#>

enum SortOrder {
    Ascending
    Descending
}