using System; using System.Collections.Generic; using MECF.Framework.Common.Equipment; namespace MECF.Framework.Common.Jobs { [Serializable] public class SequenceStepInfo { public List StepModules { get; set; } public Dictionary RecipeNameDic { get; set; } public string RecipeName { get; set; } public double AlignAngle { get; set; } public double CleanInterval { get; set; } public Dictionary StepParameter { get; set; } public SequenceStepInfo() { StepModules = new List(); StepParameter = new Dictionary(); RecipeNameDic = new Dictionary(); } } }