Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MailPriority.cs « System.Web.Mail « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b6c638edf23c812343492d410f3f55ba0987b86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
// System.Web.Mail.MailPriority.cs
//
// Author:
//    Lawrence Pit (loz@cable.a2000.nl)
//

namespace System.Web.Mail 
{

	/// <summary>
	/// </summary>
	public enum MailPriority 
	{

		/// <summary>
		/// </summary>
		Normal = 0,
		
		/// <summary>
		/// </summary>
		Low = 1,

		/// <summary>
		/// </summary>
		High = 2

	} 
	
} //namespace System.Web.Mail