Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/MacroStabilityInwardsOutput.cs =================================================================== diff -u -r0e9146a3375e69a172409554b934db2cc14b3f84 -r038a3c3f2afc97dcbdf59316a281730e608a4cf0 --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/MacroStabilityInwardsOutput.cs (.../MacroStabilityInwardsOutput.cs) (revision 0e9146a3375e69a172409554b934db2cc14b3f84) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/MacroStabilityInwardsOutput.cs (.../MacroStabilityInwardsOutput.cs) (revision 038a3c3f2afc97dcbdf59316a281730e608a4cf0) @@ -45,6 +45,11 @@ } FactorOfStability = properties.FactorOfStability; + ZValue = properties.ZValue; + ForbiddenZonesXEntryMin = properties.ForbiddenZonesXEntryMin; + ForbiddenZonesXEntryMax = properties.ForbiddenZonesXEntryMax; + ForbiddenZonesAutomaticallyCalculated = properties.ForbiddenZonesAutomaticallyCalculated; + GridAutomaticallyCalculated = properties.GridAutomaticallyCalculated; } #region properties @@ -54,6 +59,31 @@ /// public double FactorOfStability { get; } + /// + /// Gets the z value. + /// + public double ZValue { get; } + + /// + /// Gets the forbidden zones x entry min. + /// + public double ForbiddenZonesXEntryMin { get; } + + /// + /// Gets the forbidden zones x entry max. + /// + public double ForbiddenZonesXEntryMax { get; } + + /// + /// Gets whether the forbidden zones are automatically calculated. + /// + public bool ForbiddenZonesAutomaticallyCalculated { get; } + + /// + /// Gets whether the grid is automatically calculated. + /// + public bool GridAutomaticallyCalculated { get; } + #endregion /// @@ -67,12 +97,40 @@ public ConstructionProperties() { FactorOfStability = double.NaN; + ZValue = double.NaN; + ForbiddenZonesXEntryMin = double.NaN; + ForbiddenZonesXEntryMax = double.NaN; } /// /// Gets or sets the factor of stability of the upliftVan calculation. /// public double FactorOfStability { internal get; set; } + + /// + /// Gets or sets the z value. + /// + public double ZValue { internal get; set; } + + /// + /// Gets or sets the forbidden zones x entry min. + /// + public double ForbiddenZonesXEntryMin { internal get; set; } + + /// + /// Gets or sets the forbidden zones x entry max. + /// + public double ForbiddenZonesXEntryMax { internal get; set; } + + /// + /// Gets or sets whether the forbidden zones are automatically calculated. + /// + public bool ForbiddenZonesAutomaticallyCalculated { internal get; set; } + + /// + /// Gets or sets whether the grid is automatically calculated. + /// + public bool GridAutomaticallyCalculated { internal get; set; } } } } \ No newline at end of file