2025-07-18 22:21:16 +08:00
|
|
|
|
using DMS.Core.Enums;
|
2025-07-19 11:11:01 +08:00
|
|
|
|
using DMS.WPF.Models;
|
2025-06-14 19:34:12 +08:00
|
|
|
|
|
2025-07-18 19:56:00 +08:00
|
|
|
|
namespace DMS.Services;
|
2025-06-14 19:34:12 +08:00
|
|
|
|
|
|
|
|
|
|
public interface INotificationService
|
|
|
|
|
|
{
|
|
|
|
|
|
void Show(Notification notification);
|
2025-06-20 18:53:29 +08:00
|
|
|
|
void Show(string message, NotificationType type = NotificationType.Info, bool IsGlobal = true);
|
2025-06-14 19:34:12 +08:00
|
|
|
|
}
|