SequenceStepInfo.cs 601 B

12345678910111213141516171819202122232425262728293031
  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 string RecipeName { get; set; }
  11. public double AlignAngle { get; set; }
  12. public Dictionary<string, object> StepParameter { get; set; }
  13. public SequenceStepInfo()
  14. {
  15. StepModules = new List<ModuleName>();
  16. StepParameter = new Dictionary<string, object>();
  17. }
  18. }
  19. }