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.
18 lines
489 B
18 lines
489 B
namespace Common.Messaging;
|
|
|
|
/// <summary>
|
|
/// Interface represents a user interface message.
|
|
/// </summary>
|
|
public interface IUserInterfaceMessage
|
|
{
|
|
/// <summary>
|
|
/// Converst message to string that is displayed to user.
|
|
/// </summary>
|
|
/// <returns>string to be displayed to user</returns>
|
|
string ToString();
|
|
|
|
/// <summary>
|
|
/// Defines how prominent the message shall be displayed to the user.
|
|
/// </summary>
|
|
MessageImportance Importance { get; }
|
|
}
|
|
|