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.

23 lines
343 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Apewer.Network
  5. {
  6. /// <summary>邮件优先级。</summary>
  7. public enum MailPriority
  8. {
  9. /// <summary></summary>
  10. Normal = 0,
  11. /// <summary></summary>
  12. Low = 1,
  13. /// <summary></summary>
  14. High = 2
  15. }
  16. }