namespace NG_2023_Kanban.DataLayer.Entities { public class Role : BaseEntity { public string Name { get; set; } public virtual ICollection? Members { get; set; } = new HashSet(); } }