Index: Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/AssessmentLayerTwoAResult.cs =================================================================== diff -u -re88fa1dfcf62085f7fabc453b73dbc8ac3ff9223 -r01782033c49f0510e5a622c161c14fa8e7a56138 --- Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/AssessmentLayerTwoAResult.cs (.../AssessmentLayerTwoAResult.cs) (revision e88fa1dfcf62085f7fabc453b73dbc8ac3ff9223) +++ Ringtoets/Common/src/Ringtoets.Common.Data/FailureMechanism/AssessmentLayerTwoAResult.cs (.../AssessmentLayerTwoAResult.cs) (revision 01782033c49f0510e5a622c161c14fa8e7a56138) @@ -33,20 +33,20 @@ /// No assessment for the failure mechanism section has been performed. /// [ResourcesDisplayName(typeof(Resources), "AssessmentLayerTwoAResult_NotCalculated")] - NotCalculated, + NotCalculated = 1, /// /// An assessment for the failure mechanism section was performed and the outcome is /// that it failed the assessment. /// [ResourcesDisplayName(typeof(Resources), "AssessmentLayerTwoAResult_Failed")] - Failed, + Failed = 2, /// /// An assessment for the failure mechanism section was performed and the outcome is /// that it passed the assessment. /// [ResourcesDisplayName(typeof(Resources), "AssessmentLayerTwoAResult_Successful")] - Successful + Successful = 3 } } \ No newline at end of file