Index: Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/FailureMechanismSectionResult.cs =================================================================== diff -u -r94b85dc077cddf7535b328b8b3a96a494afac0f6 -r673e35de0df920529e5dda63ea8b4dfb08ed65a8 --- Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/FailureMechanismSectionResult.cs (.../FailureMechanismSectionResult.cs) (revision 94b85dc077cddf7535b328b8b3a96a494afac0f6) +++ Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/FailureMechanismSectionResult.cs (.../FailureMechanismSectionResult.cs) (revision 673e35de0df920529e5dda63ea8b4dfb08ed65a8) @@ -21,6 +21,7 @@ using System; using Core.Common.Base; +using Core.Common.Base.Data; namespace Ringtoets.Common.Data.FailureMechanism { @@ -41,9 +42,20 @@ throw new ArgumentNullException("section"); } Section = section; + AssessmentLayerThree = (RoundedDouble)double.NaN; } /// + /// Gets or sets the state of the assessment layer one. + /// + public bool AssessmentLayerOne { get; set; } + + /// + /// Gets or sets the value of the tailored assessment of safety. + /// + public RoundedDouble AssessmentLayerThree { get; set; } + + /// /// Gets the encapsulated . /// public FailureMechanismSection Section { get; private set; }