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