using DMS.Core.Enums; using DMS.WPF.Models; namespace DMS.Services; public interface INotificationService { void Show(Notification notification); void Show(string message, NotificationType type = NotificationType.Info, bool IsGlobal = true); }