Index: Ringtoets/Revetment/src/Ringtoets.Revetment.IO/WaveConditions/ExportableWaveConditions.cs
===================================================================
diff -u -r2057d3372084602a2d959db2e33dcf81de971a73 -r5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb
--- Ringtoets/Revetment/src/Ringtoets.Revetment.IO/WaveConditions/ExportableWaveConditions.cs (.../ExportableWaveConditions.cs) (revision 2057d3372084602a2d959db2e33dcf81de971a73)
+++ Ringtoets/Revetment/src/Ringtoets.Revetment.IO/WaveConditions/ExportableWaveConditions.cs (.../ExportableWaveConditions.cs) (revision 5ca67bdbaab0f6a9fb7682c06140b93bb0f5b5bb)
@@ -82,66 +82,66 @@
///
/// Gets the wave angle with respect to the dike normal.
///
- public RoundedDouble WaveAngle { get; private set; }
+ public RoundedDouble WaveAngle { get; }
///
/// Gets the wave direction with respect to North.
///
- public RoundedDouble WaveDirection { get; private set; }
+ public RoundedDouble WaveDirection { get; }
///
/// Gets the wave period.
///
- public RoundedDouble WavePeriod { get; private set; }
+ public RoundedDouble WavePeriod { get; }
///
/// Gets the wave height.
///
- public RoundedDouble WaveHeight { get; private set; }
+ public RoundedDouble WaveHeight { get; }
///
/// Gets the water level.
///
- public RoundedDouble WaterLevel { get; private set; }
+ public RoundedDouble WaterLevel { get; }
///
/// Gets the type of dike cover.
///
- public CoverType CoverType { get; private set; }
+ public CoverType CoverType { get; }
///
/// Gets the id of the foreshore.
///
- public string ForeshoreId { get; private set; }
+ public string ForeshoreId { get; }
///
/// Gets a value indicating whether a foreshore profile was used in the calculation.
///
- public bool UseForeshore { get; private set; }
+ public bool UseForeshore { get; }
///
/// Gets a value indicating whether a break water was used in the calculation.
///
- public bool UseBreakWater { get; private set; }
+ public bool UseBreakWater { get; }
///
/// Gets the y coordinate of the location.
///
- public double LocationYCoordinate { get; private set; }
+ public double LocationYCoordinate { get; }
///
/// Gets the x coordinate of the location.
///
- public double LocationXCoordinate { get; private set; }
+ public double LocationXCoordinate { get; }
///
/// Gets the name of the location.
///
- public string LocationName { get; private set; }
+ public string LocationName { get; }
///
/// Gets the name of the calculation.
///
- public string CalculationName { get; private set; }
+ public string CalculationName { get; }
}
}
\ No newline at end of file