Index: DamEngine/trunk/src/Deltares.DamEngine.Data/Geotechnics/WaterpressureInterpolationModel.cs
===================================================================
diff -u -r4000 -r4052
--- DamEngine/trunk/src/Deltares.DamEngine.Data/Geotechnics/WaterpressureInterpolationModel.cs (.../WaterpressureInterpolationModel.cs) (revision 4000)
+++ DamEngine/trunk/src/Deltares.DamEngine.Data/Geotechnics/WaterpressureInterpolationModel.cs (.../WaterpressureInterpolationModel.cs) (revision 4052)
@@ -19,21 +19,20 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
-namespace Deltares.DamEngine.Data.Geotechnics
+namespace Deltares.DamEngine.Data.Geotechnics;
+
+///
+/// Shear Strength model type enumerator
+///
+public enum WaterpressureInterpolationModel
{
///
- /// Shear Strength model type enumerator
+ /// Automatic interpolation
///
- public enum WaterpressureInterpolationModel
- {
- ///
- /// Automatic interpolation
- ///
- Automatic = 1,
+ Automatic = 1,
- ///
- /// Hydrostatic interpolation
- ///
- Hydrostatic = 2
- }
+ ///
+ /// Hydrostatic interpolation
+ ///
+ Hydrostatic = 2
}
\ No newline at end of file