Files
iMES_Net/iMES.Core/Enums/QueryOrderBy.cs
2026-02-06 18:34:35 +08:00

13 lines
172 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace iMES.Core.Enums
{
public enum QueryOrderBy
{
Desc=1,
Asc=2
}
}