Files
DMS/DMS.WPF/Services/INotificationService.cs

10 lines
252 B
C#
Raw Normal View History

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