using System; using System.Collections.Generic; namespace demo_2023.Models; public partial class Role { public int Id { get; set; } public string Name { get; set; } = null!; public virtual ICollection Clients { get; set; } = new List(); }