using System.ComponentModel.DataAnnotations;
namespace FoodLabeling.Application.Contracts.Dtos.RbacRoleMenu;
///
/// 角色-权限设置入参(覆盖式)
///
public class RbacRoleMenuSetInputVo
{
///
/// 角色ID
///
[Required]
public Guid RoleId { get; set; }
///
/// 菜单ID列表(覆盖式)
///
[Required]
public List MenuIds { get; set; } = new();
}