LANCommander/LANCommander.Server.Data/Enums/SortDirection.cs

9 lines
129 B
C#
Raw Normal View History

namespace LANCommander.Server.Data.Enums
{
public enum SortDirection
{
Ascending,
Descending,
}
}