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#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}