mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-20 03:24:24 +00:00
11 lines
130 B
C#
11 lines
130 B
C#
using System;
|
|
|
|
namespace Oqtane.Shared
|
|
{
|
|
public enum SearchSortDirections
|
|
{
|
|
Ascending,
|
|
Descending
|
|
}
|
|
}
|