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

18 lines
300 B

using System;
using System.ComponentModel;
namespace ZeroLevel.DocumentObjectModel
{
public enum Priority
: Int32
{
[Description("Normal")]
Normal = 0,
[Description("Express")]
Express = 1,
[Description("Flash")]
Flash = 2
}
}

Powered by TurnKey Linux.