mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
29 lines
589 B
C#
29 lines
589 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Specifies the severity of a <see cref="Radzen.Blazor.RadzenNotification" />. Severity changes the visual styling of the RadzenNotification (icon and background color).
|
|
/// </summary>
|
|
public enum NotificationSeverity
|
|
{
|
|
/// <summary>
|
|
/// Represents an error.
|
|
/// </summary>
|
|
Error,
|
|
|
|
/// <summary>
|
|
/// Represents some generic information.
|
|
/// </summary>
|
|
Info,
|
|
|
|
/// <summary>
|
|
/// Represents a success.
|
|
/// </summary>
|
|
Success,
|
|
|
|
/// <summary>
|
|
/// Represents a warning.
|
|
/// </summary>
|
|
Warning
|
|
}
|
|
|