using System.Collections.Generic; namespace LeafWeb.Core.Charter { public class CurveParamSet { public CurveType CurveType { get; set; } public List AnetMeasChloro1Data { get; } = new List(); // y=AnetMeas column, x=PCO2c, for PointLimitType=1 public List AnetMeasChloro2Data { get; } = new List(); // y=AnetMeas column, x=PCO2c, for PointLimitType=2 public List AnetMeasChloro3Data { get; } = new List(); // y=AnetMeas column, x=PCO2c, for PointLimitType=3 public List AnetMeasInter1Data { get; } = new List(); // y=AnetMeas column, x=PCO2i, for PointLimitType=1 public List AnetMeasInter2Data { get; } = new List(); // y=AnetMeas column, x=PCO2i, for PointLimitType=2 public List AnetMeasInter3Data { get; } = new List(); // y=AnetMeas column, x=PCO2i, for PointLimitType=3 public List AcChloroData { get; } = new List(); public List AjChloroData { get; } = new List(); public List AtChloroData { get; } = new List(); public List AcInterData { get; } = new List(); public List AjInterData { get; } = new List(); public List AtInterData { get; } = new List(); } }