using System;
using Cpp2IlInjected;
namespace System.Net.Mail
{
/// Specifies the priority of a .
// Token: 0x020002B8 RID: 696
[Token(Token = "0x20002B8")]
public enum MailPriority
{
/// The email has normal priority.
// Token: 0x04000AE0 RID: 2784
[Token(Token = "0x4000AE0")]
Normal,
/// The email has low priority.
// Token: 0x04000AE1 RID: 2785
[Token(Token = "0x4000AE1")]
Low,
/// The email has high priority.
// Token: 0x04000AE2 RID: 2786
[Token(Token = "0x4000AE2")]
High
}
}