Index: Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.IO/ReadDuneLocation.cs
===================================================================
diff -u -r330f2e86f2fb575c436cdbb46b6d31bc246ef6fc -radadf1a820c1c6f418f30411352bf661214dd2ae
--- Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.IO/ReadDuneLocation.cs (.../ReadDuneLocation.cs) (revision 330f2e86f2fb575c436cdbb46b6d31bc246ef6fc)
+++ Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.IO/ReadDuneLocation.cs (.../ReadDuneLocation.cs) (revision adadf1a820c1c6f418f30411352bf661214dd2ae)
@@ -58,31 +58,31 @@
///
/// Gets the name of the dune location.
///
- public string Name { get; private set; }
+ public string Name { get; }
///
/// Gets the coordinate of the dune location.
///
- public Point2D Location { get; private set; }
+ public Point2D Location { get; }
///
/// Gets the coastal area id of the dune location.
///
- public int CoastalAreaId { get; private set; }
+ public int CoastalAreaId { get; }
///
/// Gets the offset of the dune location.
///
- public RoundedDouble Offset { get; private set; }
+ public RoundedDouble Offset { get; }
///
/// Gets the orientation of the dune location.
///
- public RoundedDouble Orientation { get; private set; }
+ public RoundedDouble Orientation { get; }
///
/// Gets the D50 of the dune location.
///
- public RoundedDouble D50 { get; private set; }
+ public RoundedDouble D50 { get; }
}
}
\ No newline at end of file