软测单独项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
520 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FangYar.Model.TBL
{
//用这个model来传到前台json,生成菜单
public class MenuJsonModel
{
public string id { get; set; }
public string title { get; set; }
public string icon { get; set; }
public string href { get; set; }
public bool spread { get; set; }
public List<MenuJsonModel> children { get; set; }
public int order { get; set; }
}
}