using System; using System.Collections.Generic; namespace Acosta.Models; public partial class Role { public int Roleid { get; set; } public string Title { get; set; } = null!; public virtual ICollection Employees { get; set; } = new List(); }