终端一体化运控平台
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
686 B

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