Files
DMS/DMS.WPF/Services/INotificationService.cs
2025-07-19 11:11:01 +08:00

10 lines
256 B
C#

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);
}