using System.Collections.Generic;
namespace DefaultNamespace.ProcessMode
{
///
/// 流程集合
///
public class ProcessCollection
{
public string Type { get; set; } // 流程类型(例如:教学、培训、练习)
public List Steps { get; private set; } // 流程中的步骤列表
///
/// 构造函数
///
/// 流程类型
public ProcessCollection(string type)
{
Type = type;
Steps = new List();
}
///
/// 添加步骤到流程中
///
/// 要添加的步骤
public void AddStep(ProcessStep step)
{
Steps.Add(step);
}
}
}