TaxManagement/Infrastructure/Const/QueryOrderBy.cs

9 lines
109 B
C#
Raw Normal View History

2024-11-13 09:19:06 +08:00
namespace Infrastructure.Const
{
public enum QueryOrderBy
{
Desc=1,
Asc=2
}
}