Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/IProbabilityAssessmentOutputEntity.cs
===================================================================
diff -u -rfaeb56f2d76b07f370127de2beb66edad2dea6af -r9e54793f4e953bf1a1b9c9f9d731de4831dd9ff6
--- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/IProbabilityAssessmentOutputEntity.cs (.../IProbabilityAssessmentOutputEntity.cs) (revision faeb56f2d76b07f370127de2beb66edad2dea6af)
+++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/IProbabilityAssessmentOutputEntity.cs (.../IProbabilityAssessmentOutputEntity.cs) (revision 9e54793f4e953bf1a1b9c9f9d731de4831dd9ff6)
@@ -27,28 +27,28 @@
public interface IProbabilityAssessmentOutputEntity
{
///
- /// Sets the required (maximum allowed) probability of failure.
+ /// Gets or sets the required (maximum allowed) probability of failure.
///
- double? RequiredProbability { set; }
+ double? RequiredProbability { get; set; }
///
- /// Set the required (maximum allowed) reliability of the failure mechanism.
+ /// Gets or set the required (maximum allowed) reliability of the failure mechanism.
///
- double? RequiredReliability { set; }
+ double? RequiredReliability { get; set; }
///
- /// Sets the probability of failure.
+ /// Gets or sets the probability of failure.
///
- double? Probability { set; }
+ double? Probability { get; set; }
///
- /// Sets the reliability of the failure mechanism.
+ /// Gets or sets the reliability of the failure mechanism.
///
- double? Reliability { set; }
+ double? Reliability { get; set; }
///
- /// Sets the factor of safety of the failure mechanism.
+ /// Gets or sets the factor of safety of the failure mechanism.
///
- double? FactorOfSafety { set; }
+ double? FactorOfSafety { get; set; }
}
}
\ No newline at end of file