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.
23 lines
426 B
23 lines
426 B
namespace Znyc.Cloudcar.Admin.Commons.Enums
|
|
{
|
|
/// <summary>
|
|
/// 通知操作类型
|
|
/// </summary>
|
|
public enum MsgType
|
|
{
|
|
/// <summary>
|
|
/// 不通知
|
|
/// </summary>
|
|
No = 0,
|
|
|
|
/// <summary>
|
|
/// 异常通知
|
|
/// </summary>
|
|
Error = 1,
|
|
|
|
/// <summary>
|
|
/// 通知所有
|
|
/// </summary>
|
|
All = 2
|
|
}
|
|
}
|