Files
iMES_Net/iMES.Core/Enums/QueryOrderBy.cs

13 lines
172 B
C#
Raw Normal View History

2026-02-06 18:34:35 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace iMES.Core.Enums
{
public enum QueryOrderBy
{
Desc=1,
Asc=2
}
}