Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilLayer1D.cs
===================================================================
diff -u -r9f936b0b29f490a024df02345df182133b1c041a -r69d647795daacbf48e17d0cf3a02a21865ab4ae6
--- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilLayer1D.cs (.../MacroStabilityInwardsSoilLayer1D.cs) (revision 9f936b0b29f490a024df02345df182133b1c041a)
+++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilLayer1D.cs (.../MacroStabilityInwardsSoilLayer1D.cs) (revision 69d647795daacbf48e17d0cf3a02a21865ab4ae6)
@@ -33,13 +33,13 @@
public MacroStabilityInwardsSoilLayer1D(double top)
{
Top = top;
- Properties = new MacroStabilityInwardsSoilLayerProperties();
+ Data = new MacroStabilityInwardsSoilLayerData();
}
///
- /// Gets the properties of the .
+ /// Gets the data of the .
///
- public MacroStabilityInwardsSoilLayerProperties Properties { get; }
+ public MacroStabilityInwardsSoilLayerData Data { get; }
///
/// Gets the top level of the .
@@ -68,15 +68,15 @@
unchecked
{
int hashCode = Top.GetHashCode();
- hashCode = (hashCode * 397) ^ Properties.GetHashCode();
+ hashCode = (hashCode * 397) ^ Data.GetHashCode();
return hashCode;
}
}
private bool Equals(MacroStabilityInwardsSoilLayer1D other)
{
return Top.Equals(other.Top)
- && Properties.Equals(other.Properties);
+ && Data.Equals(other.Data);
}
}
}
\ No newline at end of file