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