WaferTransferCondition.cs 790 B

12345678910111213141516171819202122232425262728293031323334
  1. namespace VirgoUI.Client.Dialog
  2. {
  3. public class WaferTransferCondition
  4. {
  5. private bool _IsPassAligner;
  6. public bool IsPassAligner
  7. {
  8. get { return _IsPassAligner; }
  9. set { _IsPassAligner = value; }
  10. }
  11. private int _AlignerAngle;
  12. public int AlignerAngle
  13. {
  14. get { return _AlignerAngle; }
  15. set { _AlignerAngle = value; }
  16. }
  17. private bool _IsPassCooling;
  18. public bool IsPassCooling
  19. {
  20. get { return _IsPassCooling; }
  21. set { _IsPassCooling = value; }
  22. }
  23. private int _CoolingTime;
  24. public int CoolingTime
  25. {
  26. get { return _CoolingTime; }
  27. set { _CoolingTime = value; }
  28. }
  29. }
  30. }