终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
570 B

  1. using BPA.Helper;
  2. namespace BPASmartClient.DosingSystem
  3. {
  4. public class CylinderStatusModel : NotifyBase
  5. {
  6. /// <summary>
  7. /// 气缸原点信号
  8. /// </summary>
  9. public bool HomeStatus { get { return _mHomeStatus; } set { _mHomeStatus = value; OnPropertyChanged(); } }
  10. private bool _mHomeStatus;
  11. /// <summary>
  12. /// 气缸到位信号
  13. /// </summary>
  14. public bool InPlace { get { return _mInPlace; } set { _mInPlace = value; OnPropertyChanged(); } }
  15. private bool _mInPlace;
  16. }
  17. }