using System; using System.Collections.Generic; namespace pr13.Models; public partial class Role { public int IdRole { get; set; } public string? Role1 { get; set; } public virtual ICollection Users { get; set; } = new List(); }