Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilLayer2D.cs =================================================================== diff -u -r9f936b0b29f490a024df02345df182133b1c041a -r69d647795daacbf48e17d0cf3a02a21865ab4ae6 --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilLayer2D.cs (.../MacroStabilityInwardsSoilLayer2D.cs) (revision 9f936b0b29f490a024df02345df182133b1c041a) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/SoilProfile/MacroStabilityInwardsSoilLayer2D.cs (.../MacroStabilityInwardsSoilLayer2D.cs) (revision 69d647795daacbf48e17d0cf3a02a21865ab4ae6) @@ -48,15 +48,15 @@ throw new ArgumentNullException(nameof(holes)); } - Properties = new MacroStabilityInwardsSoilLayerProperties(); + Data = new MacroStabilityInwardsSoilLayerData(); OuterRing = outerRing; Holes = holes.ToArray(); } /// - /// Gets the properties of the . + /// Gets the data of the . /// - public MacroStabilityInwardsSoilLayerProperties Properties { get; } + public MacroStabilityInwardsSoilLayerData Data { get; } /// /// Gets the outer ring of the polygon with holes describing the surface of the . @@ -89,7 +89,7 @@ { unchecked { - int hashCode = Properties.GetHashCode(); + int hashCode = Data.GetHashCode(); hashCode = (hashCode * 397) ^ OuterRing.GetHashCode(); foreach (Ring hole in Holes) { @@ -101,7 +101,7 @@ private bool Equals(MacroStabilityInwardsSoilLayer2D other) { - return Properties.Equals(other.Properties) + return Data.Equals(other.Data) && OuterRing.Equals(other.OuterRing) && Holes.SequenceEqual(other.Holes); }