Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/Readers/ReadPipingCalculation.cs =================================================================== diff -u -r9b940da26da12706c2b6665959e6de7f1a3dbc52 -r6ed40142f26dda106581e03da03fcf411fc0514d --- Ringtoets/Piping/src/Ringtoets.Piping.IO/Readers/ReadPipingCalculation.cs (.../ReadPipingCalculation.cs) (revision 9b940da26da12706c2b6665959e6de7f1a3dbc52) +++ Ringtoets/Piping/src/Ringtoets.Piping.IO/Readers/ReadPipingCalculation.cs (.../ReadPipingCalculation.cs) (revision 6ed40142f26dda106581e03da03fcf411fc0514d) @@ -57,7 +57,7 @@ /// /// Gets the assessment level of the read piping calculation. /// - public double AssessmentLevel { get; } + public double? AssessmentLevel { get; } /// /// Gets the name of the hydraulic boundary location of the read piping calculation. @@ -72,12 +72,12 @@ /// /// Gets the l-coordinate of the entry point of the read piping calculation. /// - public double EntryPointL { get; } + public double? EntryPointL { get; } /// /// Gets the l-coordinate of the exit point of the read piping calculation. /// - public double ExitPointL { get; } + public double? ExitPointL { get; } /// /// Gets the name of the stochastic soil model of the read piping calculation. @@ -92,22 +92,22 @@ /// /// Gets the mean of the phreatic level exit of the read piping calculation. /// - public double PhreaticLevelExitMean { get; } + public double? PhreaticLevelExitMean { get; } /// /// Gets the standard deviation of the phreatic level exit of the read piping calculation. /// - public double PhreaticLevelExitStandardDeviation { get; } + public double? PhreaticLevelExitStandardDeviation { get; } /// /// Gets the mean of the damping factor exit of the read piping calculation. /// - public double DampingFactorExitMean { get; } + public double? DampingFactorExitMean { get; } /// /// Gets the standard deviation of the damping factor exit of the read piping calculation. /// - public double DampingFactorExitStandardDeviation { get; } + public double? DampingFactorExitStandardDeviation { get; } public string Name { get; } @@ -124,7 +124,7 @@ /// /// Gets or sets the value for /// - public double AssessmentLevel { internal get; set; } + public double? AssessmentLevel { internal get; set; } /// /// Gets or sets the value for @@ -139,12 +139,12 @@ /// /// Gets or sets the value for /// - public double EntryPointL { internal get; set; } + public double? EntryPointL { internal get; set; } /// /// Gets or sets the value for /// - public double ExitPointL { internal get; set; } + public double? ExitPointL { internal get; set; } /// /// Gets or sets the value for @@ -159,22 +159,22 @@ /// /// Gets or sets the value for /// - public double PhreaticLevelExitMean { internal get; set; } + public double? PhreaticLevelExitMean { internal get; set; } /// /// Gets or sets the value for /// - public double PhreaticLevelExitStandardDeviation { internal get; set; } + public double? PhreaticLevelExitStandardDeviation { internal get; set; } /// /// Gets or sets the value for /// - public double DampingFactorExitMean { internal get; set; } + public double? DampingFactorExitMean { internal get; set; } /// /// Gets or sets the value for /// - public double DampingFactorExitStandardDeviation { internal get; set; } + public double? DampingFactorExitStandardDeviation { internal get; set; } } } } \ No newline at end of file