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