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
23 lines
343 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Apewer.Network
|
|
{
|
|
|
|
/// <summary>邮件优先级。</summary>
|
|
public enum MailPriority
|
|
{
|
|
|
|
/// <summary></summary>
|
|
Normal = 0,
|
|
|
|
/// <summary></summary>
|
|
Low = 1,
|
|
|
|
/// <summary></summary>
|
|
High = 2
|
|
|
|
}
|
|
|
|
}
|
|
|