24 lines
401 B
C#
24 lines
401 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DDUtilityApp.WORKFLOW.DATA
|
|
{
|
|
|
|
public class DynamicActivity
|
|
{
|
|
|
|
public List<Parameter> Parameters { get; set; } = new List<Parameter>();
|
|
|
|
public Parameter Result { get; set; }
|
|
|
|
public ViewState ViewState { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|