Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/Configurations/MacroStabilityInwardsCalculationConfiguration.cs =================================================================== diff -u -rf03b47d0d73983de35188874a094ae07f1ea13fa -r681fe6f5c04ea2acdb99801dd749a11a174d5b42 --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/Configurations/MacroStabilityInwardsCalculationConfiguration.cs (.../MacroStabilityInwardsCalculationConfiguration.cs) (revision f03b47d0d73983de35188874a094ae07f1ea13fa) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.IO/Configurations/MacroStabilityInwardsCalculationConfiguration.cs (.../MacroStabilityInwardsCalculationConfiguration.cs) (revision 681fe6f5c04ea2acdb99801dd749a11a174d5b42) @@ -42,29 +42,29 @@ } /// - /// Gets the assessment level of the calculation. + /// Gets or sets the assessment level of the calculation. /// public double? AssessmentLevel { get; set; } /// - /// Gets the name of the hydraulic boundary location of the calculation. + /// Gets or sets the name of the hydraulic boundary location of the calculation. /// - public string HydraulicBoundaryLocation { get; set; } + public string HydraulicBoundaryLocationName { get; set; } /// - /// Gets the name of the surface line of the calculation. + /// Gets or sets the name of the surface line of the calculation. /// - public string SurfaceLine { get; set; } + public string SurfaceLineName { get; set; } /// - /// Gets the name of the stochastic soil model of the calculation. + /// Gets or sets the name of the stochastic soil model of the calculation. /// - public string StochasticSoilModel { get; set; } + public string StochasticSoilModelName { get; set; } /// - /// Gets the name of the stochastic soil profile of the calculation. + /// Gets or sets the name of the stochastic soil profile of the calculation. /// - public string StochasticSoilProfile { get; set; } + public string StochasticSoilProfileName { get; set; } /// /// Gets or sets the name for the calculation. @@ -80,7 +80,7 @@ { if (value == null) { - throw new ArgumentNullException(nameof(value), @"Name is required for a structure calculation configuration."); + throw new ArgumentNullException(nameof(value), @"Name is required for a calculation configuration."); } name = value; }