using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 电子展板.Utility.ResponseModels { /// /// 菜单视图模型。 /// public class LayNavbar { /// /// 标题 /// public string title { get; set; } /// /// 图标 /// public string icon { get; set; } /// /// 是否展开 /// public bool spread { get; set; } /// /// 子级菜单集合 /// public List children { get; set; } } /// /// 子级菜单模型。 /// public class LayChildNavbar { /// /// 标题 /// public string title { get; set; } /// /// 图标 /// public string icon { get; set; } /// /// 链接 /// public string href { get; set; } } }