using System.ComponentModel.DataAnnotations;
namespace FoodLabeling.Application.Contracts.Dtos.RbacRoleMenu;
///
/// 角色-权限移除入参
///
public class RbacRoleMenuRemoveInputVo
{
[Required]
public Guid RoleId { get; set; }
[Required]
public List MenuIds { get; set; } = new();
}