DryerCommonData.cs 1.0 KB

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MECF.Framework.Common.CommonData.Dryer
  7. {
  8. public class DryerCommonData : NotifiableItem
  9. {
  10. public bool PowerControl { get { return _powerControl; } set { _powerControl = value; InvokePropertyChanged(nameof(PowerControl)); } }
  11. public double ExhaustPressure { get { return _exhaustPressure; } set { _exhaustPressure = value;InvokePropertyChanged(nameof(ExhaustPressure)); } }
  12. public bool BlowerHigh { get { return _blowerHigh; } set { _blowerHigh = value;InvokePropertyChanged(nameof(BlowerHigh)); } }
  13. public bool IsDataInitialized { get { return _isDataInitialized; } set { _isDataInitialized = value;InvokePropertyChanged(nameof(IsDataInitialized)); } }
  14. #region 内部变量
  15. private bool _powerControl;
  16. private double _exhaustPressure;
  17. private bool _blowerHigh;
  18. private bool _isDataInitialized;
  19. #endregion
  20. }
  21. }