| 1234567891011121314151617181920212223 |
- using System.Collections.Generic;
- namespace VberZero.Workflow.DesignInfo;
- public class WorkflowNode
- {
- public string Key { get; set; }
- public string Title { get; set; }
- /// <summary>
- /// 位置
- /// </summary>
- public int[] Position { get; set; }
- /// <summary>
- /// 类型[left,top]
- /// </summary>
- public string Type { get; set; }
- public WorkflowStepBodyInput StepBody { get; set; }
- public IEnumerable<string> ParentNodes { get; set; }
- public IEnumerable<WorkflowConditionNode> NextNodes { get; set; }
- }
|