traidas entidades de la db

Signed-off-by: fede <federico.nicolas.polidoro@gmail.com>
This commit is contained in:
2024-10-19 18:00:26 -03:00
parent ceffbf941e
commit 13ea698572
28 changed files with 600 additions and 2854 deletions

13
Entidades/Permiso.cs Normal file
View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
namespace Entidades;
public partial class Permiso
{
public int id { get; set; }
public string? descripcion { get; set; }
public virtual ICollection<Grupo> idgrupos { get; set; } = new List<Grupo>();
}