- using System.Collections.Generic;
- namespace VberZero.Workflow.DesignInfo;
- public class WorkflowConditionNode
- {
- public string Label { get; set; }
- public string NodeId { get; set; }
- public IEnumerable<WorkflowConditionCondition> Conditions { get; set; } = new List<WorkflowConditionCondition>();
- }
|