using System;
using Wino.Core.Domain.Enums;
namespace Wino.Messaging.Client.Shell
{
///
/// For displaying right sliding notification message in shell.
///
/// Severity of notification.
/// Title of the message.
/// Message content.
public record InfoBarMessageRequested(InfoBarMessageType Severity,
string Title,
string Message,
string ActionButtonTitle = "",
Action Action = null);
}