using System;
namespace Abp.Notifications
{
///
/// Notification severity.
///
public enum NotificationSeverity : byte
{
///
/// Info.
///
Info = 0,
///
/// Success.
///
Success = 1,
///
/// Warn.
///
Warn = 2,
///
/// Error.
///
Error = 3,
///
/// Fatal.
///
Fatal = 4
}
}