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