Index: Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.IO/Model/SerializableAssessmentSection.cs
===================================================================
diff -u -r1ea93714d7063df84c6ecf043209ef821ca54a70 -rd3b53b68914f5cead6eaf7b008168b29b2bd5754
--- Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.IO/Model/SerializableAssessmentSection.cs (.../SerializableAssessmentSection.cs) (revision 1ea93714d7063df84c6ecf043209ef821ca54a70)
+++ Ringtoets/AssemblyTool/src/Ringtoets.AssemblyTool.IO/Model/SerializableAssessmentSection.cs (.../SerializableAssessmentSection.cs) (revision d3b53b68914f5cead6eaf7b008168b29b2bd5754)
@@ -47,7 +47,7 @@
///
/// The unique ID of the assessment section.
/// The name of the assessment section.
- /// The geometry of the surface line.
+ /// The geometry of the reference line.
/// Thrown when any parameter is null.
/// Thrown when contains no elements.
public SerializableAssessmentSection(string id,
@@ -71,8 +71,8 @@
Id = id;
Name = name;
- SurfaceLineLength = new SerializableMeasure(Math2D.Length(geometry));
- SurfaceLineGeometry = new SerializableLine(geometry);
+ ReferenceLineLength = new SerializableMeasure(Math2D.Length(geometry));
+ ReferenceLineGeometry = new SerializableLine(geometry);
}
///
@@ -88,17 +88,17 @@
public string Name { get; set; }
///
- /// Gets or sets the geometry of the surface line.
+ /// Gets or sets the geometry of the reference line.
///
[XmlElement(AssemblyXmlIdentifiers.Geometry2D)]
- public SerializableLine SurfaceLineGeometry { get; set; }
+ public SerializableLine ReferenceLineGeometry { get; set; }
///
- /// Gets or sets the length of the surface line.
+ /// Gets or sets the length of the reference line.
/// [m]
///
[XmlElement(AssemblyXmlIdentifiers.Length)]
- public SerializableMeasure SurfaceLineLength { get; set; }
+ public SerializableMeasure ReferenceLineLength { get; set; }
///
/// Gets or sets the type of the assessment section.