using DMS.Core.Enums; namespace DMS.WPF.Models; /// /// 表示通知信息。 /// public class Notification { /// /// 通知是否为全局通知。 /// public bool IsGlobal { get; set; } /// /// 通知消息内容。 /// public string Message { get; set; } /// /// 通知类型。 /// public NotificationType Type { get; set; } }