creado toggle habilitar grupo y correjido un par de bugs de

modalestatico
This commit is contained in:
2025-04-25 13:06:19 -03:00
parent fdcb74bb11
commit 1d3784d848
7 changed files with 74 additions and 2 deletions
+1
View File
@@ -3,6 +3,7 @@ public class GrupoDto
{
public int idgrupo { get; set; }
public string Nombre { get; set; } = "";
public bool Habilitado { get; set; } = false;
public HashSet<string> GruposIncluidos { get; set; } = [];
public List<PermisoDto> Permisos { get; set; } = [];