YD_Event.Admin/YD_Event.Application/Menu/Dtos/CheckPermissionOutput.cs

13 lines
283 B
C#
Raw Normal View History

2025-12-17 11:12:13 +08:00
namespace YD_Event.Application.Menu.Dtos;
2025-12-17 10:32:52 +08:00
public class CheckPermissionOutput
{
/// <summary>
/// 权限标识
/// </summary>
public string Code { get; set; }
/// <summary>
/// 是否有访问权限
/// </summary>
public bool Access { get; set; }
}