SequenceStepInfo.cs 781 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using MECF.Framework.Common.Equipment;
  4. namespace MECF.Framework.Common.Jobs
  5. {
  6. [Serializable]
  7. public class SequenceStepInfo
  8. {
  9. public List<ModuleName> StepModules { get; set; }
  10. public Dictionary<string, string> RecipeNameDic { get; set; }
  11. public string RecipeName { get; set; }
  12. public double AlignAngle { get; set; }
  13. public double CleanInterval { get; set; }
  14. public Dictionary<string, object> StepParameter { get; set; }
  15. public SequenceStepInfo()
  16. {
  17. StepModules = new List<ModuleName>();
  18. StepParameter = new Dictionary<string, object>();
  19. RecipeNameDic = new Dictionary<string, string>();
  20. }
  21. }
  22. }