namespace Common.Messaging;
///
/// Interface represents a user interface message.
///
public interface IUserInterfaceMessage
{
///
/// Converst message to string that is displayed to user.
///
/// string to be displayed to user
string ToString();
///
/// Defines how prominent the message shall be displayed to the user.
///
MessageImportance Importance { get; }
}