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
238 B
16 lines
238 B
namespace Apewer.Source
|
|
{
|
|
|
|
/// <summary>排序。</summary>
|
|
public enum FieldOrder
|
|
{
|
|
|
|
/// <summary>升序排序。</summary>
|
|
Ascend,
|
|
|
|
/// <summary>降序排序。</summary>
|
|
Descend
|
|
|
|
}
|
|
|
|
}
|
|
|