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