using System; using System.Collections.Generic; namespace Entidades; public partial class Rol { public int Id { get; set; } public string Descipcion { get; set; } = null!; public virtual ICollection Idgrupos { get; set; } = new List(); }