20230201_145_upperpc/InSituLaboratory.Models/MEMSChromatogramModel.cs

18 lines
463 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 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; }
}
}