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.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Model/ViewModels/SidebarMenuViewModel.cs

27 lines
768 B

using System.Collections.Generic;
namespace Tiobon.Core.Model.ViewModels
{
/// <summary>
/// 菜单展示model
/// </summary>
public class SidebarMenuViewModel
{
public SidebarMenuViewModel()
{
this.ChildMenuList = new List<SidebarMenuViewModel>();
}
public int Id { get; set; }
public int? ParentId { get; set; }
public string Name { get; set; }
public string Icon { get; set; }
public string Code { get; set; }
public string LinkUrl { get; set; }
public string Area { get; set; }
public string Controller { get; set; }
public string Action { get; set; }
public List<SidebarMenuViewModel> ChildMenuList { get; set; }
}
}