Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/PipingStructureFailureMechanismSectionResult.cs
===================================================================
diff -u -r94b85dc077cddf7535b328b8b3a96a494afac0f6 -r08a279166007321b0ae0f2f15a2f13c191952e1b
--- Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/PipingStructureFailureMechanismSectionResult.cs (.../PipingStructureFailureMechanismSectionResult.cs) (revision 94b85dc077cddf7535b328b8b3a96a494afac0f6)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Data/StandAlone/SectionResult/PipingStructureFailureMechanismSectionResult.cs (.../PipingStructureFailureMechanismSectionResult.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b)
@@ -19,12 +19,28 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using Core.Common.Base.Data;
using Ringtoets.Common.Data.FailureMechanism;
namespace Ringtoets.Integration.Data.StandAlone.SectionResult
{
- public class PipingStructureFailureMechanismSectionResult : SimpleFailureMechanismSectionResult
+ public class PipingStructureFailureMechanismSectionResult : FailureMechanismSectionResult
{
public PipingStructureFailureMechanismSectionResult(FailureMechanismSection section) : base(section) {}
+
+ ///
+ /// Gets the value of assessment layer two a.
+ ///
+ public AssessmentLayerTwoAResult AssessmentLayerTwoA { get; set; }
+
+ ///
+ /// Gets or sets the value of assessment layer three.
+ ///
+ public RoundedDouble AssessmentLayerThree { get; set; }
+
+ ///
+ /// Gets or sets the state of the assessment layer one.
+ ///
+ public bool AssessmentLayerOne { get; set; }
}
}