using System;
namespace System.Net.Mail
{
/// Specifies the priority of a .
// Token: 0x02000141 RID: 321
public enum MailPriority
{
/// The email has normal priority.
// Token: 0x04000B1B RID: 2843
Normal,
/// The email has low priority.
// Token: 0x04000B1C RID: 2844
Low,
/// The email has high priority.
// Token: 0x04000B1D RID: 2845
High
}
}