using WTA.Shared.Attributes; using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [Order(4)] [SystemManagement] public class Department : BaseTreeEntity { public List Users { get; set; } = new List(); }