Index: DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/StabilityResultSlice.cs
===================================================================
diff -u -r4055 -r4056
--- DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/StabilityResultSlice.cs (.../StabilityResultSlice.cs) (revision 4055)
+++ DamClients/DamUI/trunk/src/DamClientsLibrary/Deltares.Dam.Data/StabilityResultSlice.cs (.../StabilityResultSlice.cs) (revision 4056)
@@ -22,32 +22,31 @@
using System;
using Deltares.Mathematics;
-namespace Deltares.Dam.Data
+namespace Deltares.Dam.Data;
+
+///
+/// Class to hold all result values per slice (stability calculations)
+///
+[Serializable]
+public class StabilityResultSlice
{
///
- /// Class to hold all result values per slice (stability calculations)
+ /// The top left point
///
- [Serializable]
- public class StabilityResultSlice
- {
- ///
- /// The top left point
- ///
- public Point2D TopLeftPoint { get; set; }
+ public Point2D TopLeftPoint { get; set; }
- ///
- /// The top right point
- ///
- public Point2D TopRightPoint { get; set; }
+ ///
+ /// The top right point
+ ///
+ public Point2D TopRightPoint { get; set; }
- ///
- /// The bottom left point
- ///
- public Point2D BottomLeftPoint { get; set; }
+ ///
+ /// The bottom left point
+ ///
+ public Point2D BottomLeftPoint { get; set; }
- ///
- /// The bottom right point
- ///
- public Point2D BottomRightPoint { get; set; }
- }
+ ///
+ /// The bottom right point
+ ///
+ public Point2D BottomRightPoint { get; set; }
}
\ No newline at end of file