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

  1. namespace Apewer.Source
  2. {
  3. /// <summary>排序。</summary>
  4. public enum FieldOrder
  5. {
  6. /// <summary>升序排序。</summary>
  7. Ascend,
  8. /// <summary>降序排序。</summary>
  9. Descend
  10. }
  11. }