using System.ComponentModel;
namespace iWare.Wms.Core
{
public enum MessageType
{
///
/// 普通信息
///
[Description("消息")]
Info = 0,
///
/// 成功提示
///
[Description("成功")]
Success = 1,
///
/// 警告提示
///
[Description("警告")]
Warning = 2,
///
/// 错误提示
///
[Description("错误")]
Error = 3
}
}