You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
233 B

namespace Apewer.Source
{
/// <summary>排序。</summary>
public enum Order
{
/// <summary>升序排序。</summary>
Ascend,
/// <summary>降序排序。</summary>
Descend
}
}