12345678910111213141516171819202122232425262728293031323334 |
- namespace VirgoUI.Client.Dialog
- {
- public class WaferTransferCondition
- {
- private bool _IsPassAligner;
- public bool IsPassAligner
- {
- get { return _IsPassAligner; }
- set { _IsPassAligner = value; }
- }
- private int _AlignerAngle;
- public int AlignerAngle
- {
- get { return _AlignerAngle; }
- set { _AlignerAngle = value; }
- }
- private bool _IsPassCooling;
- public bool IsPassCooling
- {
- get { return _IsPassCooling; }
- set { _IsPassCooling = value; }
- }
- private int _CoolingTime;
- public int CoolingTime
- {
- get { return _CoolingTime; }
- set { _CoolingTime = value; }
- }
- }
- }
|