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; } } }