// ReSharper disable once CheckNamespace
namespace WPFluent.Controls;
public enum InfoBadgeSeverity
{
///
/// Communicates that the InfoBadge is displaying general information that requires the user's attention.
///
Attention = 0,
///
/// Communicates that the InfoBadge is displaying general information that requires the user's attention.
///
Informational = 1,
///
/// Communicates that the InfoBadge is displaying general information that requires the user's attention.
///
Success = 2,
///
/// Communicates that the InfoBadge is displaying general information that requires the user's attention.
///
Caution = 3,
///
/// Communicates that the InfoBadge is displaying general information that requires the user's attention.
///
Critical = 4,
}