添加消息通知功能,使用Handy Control的Grow来实现的

This commit is contained in:
2025-06-14 19:34:12 +08:00
parent 1fbf8b8fa6
commit 5dfce624c4
10 changed files with 195 additions and 81 deletions

10
Models/Notification.cs Normal file
View File

@@ -0,0 +1,10 @@
using PMSWPF.Enums;
namespace PMSWPF.Models;
public class Notification
{
public string Message { get; set; }
public NotificationType Type { get; set; }
public bool IsGlobal { get; set; }
}