Files
DDUtility/DDUtilityApp/WORKFLOW/DATA/FlowDecision.cs
2025-02-03 11:02:48 +09:00

20 lines
306 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DDUtilityApp.WORKFLOW.DATA
{
public class FlowDecision : FlowBase
{
public FlowBase True { get; set; }
public FlowBase False { get; set; }
}
}