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
732 B
28 lines
732 B
namespace Common.Messaging;
|
|
|
|
public enum MessageImportance
|
|
{
|
|
/// <summary>
|
|
/// Normal importance.
|
|
/// Message is displayed but user might not recognize it immediately.
|
|
/// </summary>
|
|
Normal,
|
|
|
|
/// <summary>
|
|
/// Medium importance.
|
|
/// Message is displayed so user should recognizes it in a matter of seconds.
|
|
/// </summary>
|
|
Medium,
|
|
|
|
/// <summary>
|
|
/// High importance.
|
|
/// Message is prominently displayed so user should recognize it immediately.
|
|
/// </summary>
|
|
High,
|
|
|
|
/// <summary>
|
|
/// High importance.
|
|
/// User is interrupted with this very prominently displayed message and needs to confirm the message.
|
|
/// </summary>
|
|
HighAndRequiresConfirmation
|
|
}
|
|
|