Files

18 lines
329 B
C#
Raw Permalink Normal View History

2023-04-13 21:12:06 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-12-11 09:55:12 +08:00
namespace Yi.Framework.Rbac.Domain.Shared.Consts
2023-04-13 21:12:06 +08:00
{
/// <summary>
/// 常量定义
/// </summary>
public class MenuConst
{
2024-09-24 11:16:19 +08:00
public const string Exist = "该菜单已经存在";
2023-04-13 21:12:06 +08:00
}
}