20230201_145_upperpc/InSituLaboratory.Models/MEMSMassModel.cs

24 lines
617 B
C#
Raw Normal View History

2024-03-30 00:17:37 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace InSituLaboratory.Models
{
public class MEMSMassModel
{
public DateTime SamplingTime { get; set; }
public string FaultCodes { get; set; }
public string CH4Concentration { get; set; }
public string H2OConcentration { get; set; }
public string N2Concentration { get; set; }
public string O2Concentration { get; set; }
public string ARConcentration { get; set; }
public string CO2Concentration { get; set; }
}
}