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
/// 设置该路由在侧边栏和面包屑中展示的名字
public string title { get; set; }
/// 设置该路由的图标,对应路径src/assets/icons/svg
public string icon { get; set; }
/// 设置为true,则不会被 keep-alive缓存
public bool noCache { get; set; }
/// 内链地址(http(s)://开头)
public string link { get; set; }
}