添加DataService为数据服务类,负责数据的加载工作,通过消息来通知DataService更新数据

This commit is contained in:
2025-06-28 19:32:51 +08:00
parent a04bfc2010
commit dba56f07d2
17 changed files with 181 additions and 34 deletions

View File

@@ -1,3 +1,5 @@
using PMSWPF.Enums;
namespace PMSWPF.Models;
public class MenuBean
@@ -7,5 +9,7 @@ public class MenuBean
public string Icon { get; set; }
public string Name { get; set; }
public int ParentId { get; set; }
public MenuType Type { get; set; }
public List<MenuBean> Items { get; set; }
}