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.

34 lines
781 B
C#

11 months ago
using System;
using System.Collections.Generic;
namespace Admin.Core.Model
{
/// <summary>
/// 路由显示信息
/// </summary>
public class MetaVo
{
/// <summary>
/// 设置该路由在侧边栏和面包屑中展示的名字
/// </summary>
public string title { get; set; }
/// <summary>
/// 设置该路由的图标对应路径src/assets/icons/svg
/// </summary>
public string icon { get; set; }
/// <summary>
/// 设置为true则不会被 keep-alive缓存
/// </summary>
public bool noCache { get; set; }
/// <summary>
/// 内链地址http(s)://开头)
/// </summary>
public string link { get; set; }
}
}