using System.Collections.Generic; namespace Models.Entities { public class Department { public int DepartmentId { get; set; } public string DepartmentName { get; set; } = string.Empty; public virtual ICollection Accounts { get; set; } = new HashSet(); } }