actualizacion de entidades

This commit is contained in:
2024-10-28 22:42:02 -03:00
parent c861a4b194
commit d75d6c52b6
15 changed files with 411 additions and 238 deletions
+3 -3
View File
@@ -5,9 +5,9 @@ namespace Entidades;
public partial class Permiso
{
public int id { get; set; }
public int Id { get; set; }
public string? descripcion { get; set; }
public string? Descripcion { get; set; }
public virtual ICollection<Grupo> idgrupos { get; set; } = new List<Grupo>();
public virtual ICollection<Grupo> Idgrupos { get; set; } = new List<Grupo>();
}