Files
DMS/Services/INotificationService.cs

10 lines
256 B
C#
Raw Normal View History

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