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.
Zero/ZeroLevel/Services/DOM/Model/Priority.cs

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
}
}

Powered by TurnKey Linux.