This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
namespace System.Net.Mail
{
/// <summary>Specifies the priority of a <see cref="T:System.Net.Mail.MailMessage" />.</summary>
// Token: 0x02000141 RID: 321
public enum MailPriority
{
/// <summary>The email has normal priority.</summary>
// Token: 0x04000B1B RID: 2843
Normal,
/// <summary>The email has low priority.</summary>
// Token: 0x04000B1C RID: 2844
Low,
/// <summary>The email has high priority.</summary>
// Token: 0x04000B1D RID: 2845
High
}
}