123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.CommonData.Dryer
- {
- public class DryerCommonData : NotifiableItem
- {
- public bool PowerControl { get { return _powerControl; } set { _powerControl = value; InvokePropertyChanged(nameof(PowerControl)); } }
- public double ExhaustPressure { get { return _exhaustPressure; } set { _exhaustPressure = value;InvokePropertyChanged(nameof(ExhaustPressure)); } }
- public bool BlowerHigh { get { return _blowerHigh; } set { _blowerHigh = value;InvokePropertyChanged(nameof(BlowerHigh)); } }
- public bool IsDataInitialized { get { return _isDataInitialized; } set { _isDataInitialized = value;InvokePropertyChanged(nameof(IsDataInitialized)); } }
- #region 内部变量
- private bool _powerControl;
- private double _exhaustPressure;
- private bool _blowerHigh;
- private bool _isDataInitialized;
- #endregion
- }
- }
|