Files
radzen-blazor/Radzen.Blazor/NotificationSeverity.cs
2025-11-05 14:31:34 +02:00

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
}