123456789101112131415161718192021222324252627282930 |
- using System.Collections.Generic;
- namespace GxPress.Result.Department
- {
-
-
-
- public class DepartmentTreeResult
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public bool HasChildren { get; set; }
-
-
-
-
- public List<DepartmentTreeResult> ChildrenItems { get; set; }
- }
- }
|