Files
Yi.Admin/Yi.Framework/Yi.Framework.Model/Models/menu.cs
橙子 f35ca69550 Revert "上传框架"
This reverts commit bcf39d525b.
2021-10-12 13:45:24 +08:00

22 lines
496 B
C#

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; }
public ICollection<menu> children { get; set; }
public mould mould { get; set; }
public ICollection<role> roles { get; set; }
}
}