WorkflowConditionNode.cs 312 B

12345678910
  1. using System.Collections.Generic;
  2. namespace VberZero.Workflow.DesignInfo;
  3. public class WorkflowConditionNode
  4. {
  5. public string Label { get; set; }
  6. public string NodeId { get; set; }
  7. public IEnumerable<WorkflowConditionCondition> Conditions { get; set; } = new List<WorkflowConditionCondition>();
  8. }