namespace Easy.Admin.Application.Menu.Dtos;
public class RouterOutput
{
///
/// 路由名称
///
public string Name { get; set; }
///
/// 路由地址
///
public string Path { get; set; }
///
/// 组件
///
public string Component { get; set; }
///
/// 路由扩展信息
///
public RouterMetaOutput Meta { get; set; }
///
/// 子菜单
///
public List Children { get; set; } = new();
}