Index: DamEngine/trunk/src/Deltares.DamEngine.Data/General/ProjectEnumerations.cs
===================================================================
diff -u -r4000 -r4052
--- DamEngine/trunk/src/Deltares.DamEngine.Data/General/ProjectEnumerations.cs (.../ProjectEnumerations.cs) (revision 4000)
+++ DamEngine/trunk/src/Deltares.DamEngine.Data/General/ProjectEnumerations.cs (.../ProjectEnumerations.cs) (revision 4052)
@@ -19,33 +19,32 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
-namespace Deltares.DamEngine.Data.General
+namespace Deltares.DamEngine.Data.General;
+
+///
+/// Types of project for DAM
+///
+public enum DamProjectType
{
- ///
- /// Types of project for DAM
- ///
- public enum DamProjectType
- {
- Operational,
- Design
- }
+ Operational,
+ Design
+}
- ///
- /// Types of analysis for the Design option DAM
- ///
- public enum AnalysisType
- {
- NoAdaption,
- AdaptGeometry
- }
+///
+/// Types of analysis for the Design option DAM
+///
+public enum AnalysisType
+{
+ NoAdaption,
+ AdaptGeometry
+}
- ///
- /// Types of Failure mechanisms for DAM
- ///
- public enum FailureMechanismSystemType
- {
- StabilityInside,
- StabilityOutside,
- Piping
- }
+///
+/// Types of Failure mechanisms for DAM
+///
+public enum FailureMechanismSystemType
+{
+ StabilityInside,
+ StabilityOutside,
+ Piping
}
\ No newline at end of file