WaferTransferCondition.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using MECF.Framework.Common.CommonData;
  2. namespace MECF.Framework.UI.Client.ClientBase
  3. {
  4. public class WaferTransferCondition
  5. {
  6. private bool _IsPassAligner;
  7. public bool IsPassAligner
  8. {
  9. get { return _IsPassAligner; }
  10. set { _IsPassAligner = value; }
  11. }
  12. private int _AlignerAngle;
  13. public int AlignerAngle
  14. {
  15. get { return _AlignerAngle; }
  16. set { _AlignerAngle = value; }
  17. }
  18. private bool _IsPassCooling;
  19. public bool IsPassCooling
  20. {
  21. get { return _IsPassCooling; }
  22. set { _IsPassCooling = value; }
  23. }
  24. private int _CoolingTime;
  25. public int CoolingTime
  26. {
  27. get { return _CoolingTime; }
  28. set { _CoolingTime = value; }
  29. }
  30. private RobotArm _Blade;
  31. public RobotArm Blade
  32. {
  33. get { return _Blade; }
  34. set { _Blade = value; }
  35. }
  36. }
  37. }