2024-07-16 14:56:46 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using Wino.Core.Domain.Enums;
|
|
|
|
|
|
|
2024-07-17 22:36:10 +02:00
|
|
|
|
namespace Wino.Messaging.Client.Shell
|
2024-07-16 14:56:46 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// For displaying right sliding notification message in shell.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="Severity">Severity of notification.</param>
|
|
|
|
|
|
/// <param name="Title">Title of the message.</param>
|
|
|
|
|
|
/// <param name="Message">Message content.</param>
|
|
|
|
|
|
public record InfoBarMessageRequested(InfoBarMessageType Severity,
|
|
|
|
|
|
string Title,
|
|
|
|
|
|
string Message,
|
|
|
|
|
|
string ActionButtonTitle = "",
|
|
|
|
|
|
Action Action = null);
|
|
|
|
|
|
}
|