Simplify CurveData data structures
This commit is contained in:
@@ -1,21 +1,11 @@
|
||||
using System.ComponentModel;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace LeafWeb.Core.Charter
|
||||
{
|
||||
public class CurveData
|
||||
public class CurveData
|
||||
{
|
||||
public string CurveId { get; set; }
|
||||
|
||||
[DisplayName("Internal conductance fixed, compensation point and M-M constants fixed")]
|
||||
public CurveParamSet FixedCndFixedCmp { get; set; }
|
||||
|
||||
[DisplayName("Internal conductance fixed, compensation point and M-M constants estimated")]
|
||||
public CurveParamSet FixedCndEstimatedCmp { get; set; }
|
||||
|
||||
[DisplayName("Internal conductance estimated, compensation point and M-M constants fixed")]
|
||||
public CurveParamSet EstimatedCndFixedCmp { get; set; }
|
||||
|
||||
[DisplayName("Internal conductance estimated, compensation point and M-M constants estimated")]
|
||||
public CurveParamSet EstimatedCndEstimatedCmp { get; set; }
|
||||
public IList<CurveParamSet> ParamSets { get; set; } = new List<CurveParamSet>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user