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.
28 lines
474 B
28 lines
474 B
namespace Sanhe.Abp.Notifications; |
|
|
|
/// <summary> |
|
/// 严重级别 |
|
/// </summary> |
|
public enum NotificationSeverity : sbyte |
|
{ |
|
/// <summary> |
|
/// 成功 |
|
/// </summary> |
|
Success = 0, |
|
/// <summary> |
|
/// 信息 |
|
/// </summary> |
|
Info = 10, |
|
/// <summary> |
|
/// 警告 |
|
/// </summary> |
|
Warn = 20, |
|
/// <summary> |
|
/// 错误 |
|
/// </summary> |
|
Error = 30, |
|
/// <summary> |
|
/// 致命错误 |
|
/// </summary> |
|
Fatal = 40 |
|
}
|
|
|