using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PMS.BusinessModels.SysManager
{
///
/// 创 建 人:王海洋
/// 创建日期:2018-12-10
/// 功能描述:加载首页菜单时所使用到的json
///
public class MenuModel
{
public int ID { get; set; }
public string text { get; set; }
public string href { get; set; }
public string icon { get; set; }
public string color { get; set; }
public int OpenMode { get; set; }
public int TheLevel { get; set; }
public MenuModel parent { get; set; }
public List child { get; set; }
}
}