20230201_145_upperpc/InSituLaboratory.Models/MEMSChromatogramModel.cs
2024-03-30 08:17:37 +08:00

18 lines
463 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace InSituLaboratory.Models
{
public class MEMSChromatogramModel
{
public DateTime SamplingTime { get; set; }
public string FaultCodes { get; set; }
public string C2Concentration { get; set; }
public string C3Concentration { get; set; }
public string C4Concentration { get; set; }
}
}