using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace GestionIntegral.Api.Dtos.Usuarios { public class ActualizarPermisosPerfilRequestDto { [Required] [MinLength(0)] // Puede que un perfil no tenga ningĂșn permiso. public List PermisosIds { get; set; } = new List(); } }