using Infrastructure.Domain; using System.Collections.Generic; namespace Application.Domain.Entities { public class Department : BaseTreeEntity { public List UserDepartments { get; set; } = new List(); } }