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 Idgrupos { get; set; } = new List(); }