21 lines
344 B
C#
21 lines
344 B
C#
using DDUtilityApp.DATA;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DDUtilityApp.WORKFLOW.DATA
|
|
{
|
|
|
|
public class FlowStep : FlowBase
|
|
{
|
|
|
|
public DynamicActivity DynamicActivity { get; set; }
|
|
|
|
public FlowBase Next { get; set; }
|
|
|
|
}
|
|
|
|
}
|