Files
DMS/DMS.WPF/Interfaces/INotificationService.cs

7 lines
223 B
C#
Raw Normal View History

2025-09-03 18:22:01 +08:00
namespace DMS.WPF.Interfaces;
public interface INotificationService
{
2025-07-26 10:05:43 +08:00
// void Show(Notification notification);
// void Show(string message, NotificationType type = NotificationType.Info, bool IsGlobal = true);
}