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