namespace YD_Event.Application.Menu.Dtos;
public class RouterMetaOutput
{
///
/// 标题
///
public string Title { get; set; }
///
/// 外链
///
public string IsLink { get; set; }
///
/// 是否隐藏
///
public bool IsHide { get; set; }
///
/// 是否缓存
///
public bool IsKeepAlive { get; set; }
///
/// 是否固定
///
public bool IsAffix { get; set; }
///
/// 菜单
///
public string Icon { get; set; }
///
/// 类型
///
public MenuType Type { get; set; }
}