using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Enumeration
{
///
/// 优先级
///
public enum Priority
{
///
/// 紧急程度最高
///
[Description("紧急程度最高")]
High=1,
///
/// 中间
///
[Description("中间")]
Middle = 2,
///
/// 不紧急
///
[Description("不紧急")]
Low = 3
}
}