using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Application
{
///
/// 客户端菜单
///
public class CustomMenusDTO
{
public List rootMenus { get; set; }
}
public class RootMenu
{
public string Code { get; set; }
public string Name { get; set; }
// public int Type { get; set; }
public string Url { get; set; }
public List customMenus { get; set; }
///
/// 链接类型0内部,1外部
///
public int Type { get; set; }
}
public class CustomMenuRequestDTO
{
public long TenantId { get; set; }
}
public class CustomMenuItem
{
///
/// 传给下级时使用
///
public long MenuId { get; set; }
///
/// 根菜单
///
public long RootId { get; set; }
///
/// 菜单名称
///
public string MenuName { get; set; }
///
/// 菜单icon
///
public string Icon { get; set; }
///
/// 路由地址
///
public string Url { get; set; }
///
/// 链接类型0内部,1外部
///
public int Type { get; set; }
///
/// 数据排序
///
public int Sort { get; set; }
}
}