1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using GxPress.EnumConst;
- namespace GxPress.Result.Process
- {
-
-
-
- public class ProcessNodeTreeResult
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
-
- public string Type { get; set; }
-
-
-
-
- public List<ProcessNodeTreeResult> Children { get; set; }
- }
- }
|