You cannot 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
380 B
C#
19 lines
380 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Admin.Core.Model.Sys;
|
|
|
|
namespace Admin.Core.Model
|
|
{
|
|
/// <summary>
|
|
/// 菜单视图
|
|
/// </summary>
|
|
public class MenuView : SysMenu
|
|
{
|
|
/// <summary>
|
|
/// 子菜单
|
|
/// </summary>
|
|
public List<MenuView> Children { get; set; } = new List<MenuView>();
|
|
}
|
|
}
|