RbacRoleGetOutputDto.cs 342 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.RbacRole;

/// <summary>
/// 角色详情输出(美国版对外)
/// </summary>
public class RbacRoleGetOutputDto : RbacRoleGetListOutputDto
{
    /// <summary>
    /// 该角色已分配的菜单权限ID列表
    /// </summary>
    public List<string> MenuIds { get; set; } = new();
}