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