Files
AlquilaFacil/Entidades/Permiso.cs
2024-10-28 22:42:02 -03:00

14 lines
268 B
C#

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>();
}