using Aitex.Core.Common.DeviceData.IoDevice.Base; using MECF.Framework.Common.CommonData; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace MECF.Framework.Common.Aitex.Core.Common.DeviceData { /// /// 单种气体总的用量 /// public class GasFlowSum : NotifiableItem { /// /// 气体名称 /// public string Name { get; set; } private double _runVolume; /// /// Run使用的体积 /// public double RunVolume { get { return _runVolume; } set { _runVolume = value; InvokePropertyChanged(); } } private double _ventVolume; /// /// Vent使用的体积 /// public double VentVolume { get { return _ventVolume; } set { _ventVolume = value; InvokePropertyChanged(); } } private double _volume; /// /// 气体用量总和 /// public double Volume { get => _volume; set { _volume = value; InvokePropertyChanged(); } } } }