Add numeric values to SortDirection

This commit is contained in:
Matt Nadareski
2026-07-13 13:57:59 -04:00
parent f200e2ef7d
commit 2e8e5786d3

View File

@@ -631,14 +631,13 @@ namespace SabreTools.RedumpLib.Data
/// <summary>
/// List of all recognized sort directions
/// </summary>
/// TODO: Add numeric values or convert to constants
public enum SortDirection
{
[HumanReadable(LongName = "Ascending", ShortName = "asc")]
Ascending,
Ascending = 0,
[HumanReadable(LongName = "Descending", ShortName = "desc")]
Descending,
Descending = 1,
}
/// <summary>