using System; using System.Collections.Generic; using System.Text.Json.Serialization; namespace Entidades; public partial class Permiso { public int Id { get; set; } public string? Descripcion { get; set; } [JsonIgnore] public virtual ICollection Idgrupos { get; set; } = new List(); }