using System; using System.Collections.Generic; using System.Text; namespace Apewer.Network { /// 邮件优先级。 public enum MailPriority { /// Normal = 0, /// Low = 1, /// High = 2 } }