using Lattice.Core.Models;
using Lattice.Core.Models.Enums;
namespace Lattice.Core.Abstractions;
///
/// Описывает сервис для рассылки уведомлений внутри системы Lattice.
///
public interface INotificationService
{
///
/// Событие, возникающее при отправке нового сообщения.
///
event EventHandler NotificationReceived;
void Show(string message, NotificationSeverity severity = NotificationSeverity.Info, int durationSeconds = 5);
}