namespace Cowain.Base.Models.Menu; /// /// 菜单项实体 /// public class MenuItem { /// /// 唯一标识 /// public string Key { get; set; } = string.Empty; /// /// 图标 Path 值 /// public string Icon { get; set; } = string.Empty; /// /// 菜单是否激活状态 /// public bool? IsActive { get; set; } /// /// 本地化键 /// public string LocaleKey { get; set; } = string.Empty; /// /// 子菜单 /// public ICollection Items { get; set; } = []; /// /// 菜单分组 /// public string? Group { get; set; } /// /// 命令类型 /// public string? CommandType { get; set; } /// /// 命令参数 /// public string? CommandParameter { get; set; } /// /// 页面命令 /// public string[]? PageActions { get; set; } }