using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 分页列表排序
///
public enum EnumPagedListOrder
{
///
/// 升序
///
Ascending = 0,
///
/// 降序
///
Descending = 1,
}
}