mirror of https://github.com/ogoun/Zero.git
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.
25 lines
505 B
25 lines
505 B
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace ZeroLevel.DocumentObjectModel
|
|
{
|
|
public enum Priority : Int32
|
|
{
|
|
/// <summary>
|
|
/// Обычный
|
|
/// </summary>
|
|
[Description("Normal")]
|
|
Normal = 0,
|
|
/// <summary>
|
|
/// Срочный
|
|
/// </summary>
|
|
[Description("Express")]
|
|
Express = 1,
|
|
/// <summary>
|
|
/// Молния
|
|
/// </summary>
|
|
[Description("Flash")]
|
|
Flash = 2
|
|
}
|
|
}
|