Sic.Framework/MECF.Framework.RT.Equipment.../HardwareUnits/GasFlow/GasFlowUnit.cs

20 lines
588 B
C#
Raw Normal View History

2023-07-11 17:46:32 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.GasFlow
{
/// <summary>
/// 单个气体对象的真值表数据,里面就是很多行数据组成的
/// </summary>
public class GasFlowUnit
{
/// <summary>
/// 一种气体对应的所有行数据集合
/// </summary>
public List<RealtimeGasFlowTrueTableRow> realtimeGasFlowTrueTableRows { get; set; } = new List<RealtimeGasFlowTrueTableRow>();
}
}