Files
Yi.Admin/Yi.Framework/Yi.Framework.Model/Models/menu.cs

21 lines
443 B
C#
Raw Normal View History

2021-10-11 21:50:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Model.Models
{
public class menu :loopModel
{
public string icon { get; set; }
public string router { get; set; }
public string menu_name { get; set; }
2021-10-17 17:35:18 +08:00
2021-10-27 23:03:56 +08:00
public List<menu> children { get; set; }
2021-10-11 21:50:50 +08:00
public mould mould { get; set; }
}
}