Index: Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/HydraulicBoundaryLocationOutput.cs
===================================================================
diff -u -rb3b6c13cf736c134476b3db34281332d01ca86b1 -rc51034a5f036c03b70e9c9a8a50b18575e686277
--- Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/HydraulicBoundaryLocationOutput.cs (.../HydraulicBoundaryLocationOutput.cs) (revision b3b6c13cf736c134476b3db34281332d01ca86b1)
+++ Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/HydraulicBoundaryLocationOutput.cs (.../HydraulicBoundaryLocationOutput.cs) (revision c51034a5f036c03b70e9c9a8a50b18575e686277)
@@ -55,41 +55,47 @@
CalculatedProbability = calculatedProbability;
CalculatedReliability = new RoundedDouble(5, calculatedReliability);
CalculationConvergence = calculationConvergence;
+ HasIllustrationPoints = false;
}
///
/// Gets the result of the calculation.
///
- public RoundedDouble Result { get; private set; }
+ public RoundedDouble Result { get; }
///
/// Gets the target probability.
/// [1/year]
///
- public double TargetProbability { get; private set; }
+ public double TargetProbability { get; }
///
/// Gets the target beta.
/// [-]
///
- public RoundedDouble TargetReliability { get; private set; }
+ public RoundedDouble TargetReliability { get; }
///
/// Gets the calculated probability.
/// [1/year]
///
- public double CalculatedProbability { get; private set; }
+ public double CalculatedProbability { get; }
///
/// Gets the calculated reliability.
/// [-]
///
- public RoundedDouble CalculatedReliability { get; private set; }
+ public RoundedDouble CalculatedReliability { get; }
///
/// Gets the convergence status of the calculation.
/// [-]
///
- public CalculationConvergence CalculationConvergence { get; private set; }
+ public CalculationConvergence CalculationConvergence { get; }
+
+ ///
+ /// Gets if the output contains illustration points.
+ ///
+ public bool HasIllustrationPoints { get; }
}
}
\ No newline at end of file