24 lines
617 B
C#
24 lines
617 B
C#
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; }
|
|
|
|
|
|
}
|
|
}
|