Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructure.cs =================================================================== diff -u -r89e6554de0313cdaa6876ba510240ee98c8547bb -r7d6e4c28a40fb056c182d0691dda2b2e88aeebfd --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructure.cs (.../ClosingStructure.cs) (revision 89e6554de0313cdaa6876ba510240ee98c8547bb) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructure.cs (.../ClosingStructure.cs) (revision 7d6e4c28a40fb056c182d0691dda2b2e88aeebfd) @@ -36,7 +36,7 @@ /// /// The construction properties. /// Thrown when - /// or is null , empty or consists of whitespace. + /// or is null, empty or consists of whitespace. /// Thrown when is null. public ClosingStructure(ConstructionProperties constructionProperties) : base(constructionProperties) { @@ -250,30 +250,30 @@ public LogNormalDistribution FlowWidthAtBottomProtection { get; private set; } /// - /// Gets the probability of the closing structure being open before flooding. + /// Gets or sets the probability of the closing structure being open before flooding. /// [1/year] /// public double ProbabilityOpenStructureBeforeFlooding { get; set; } /// - /// Gets the probability of failing to close the closing structure. + /// Gets or sets the probability of failing to close the closing structure. /// [1/year] /// public double FailureProbabilityOpenStructure { get; set; } /// - /// Gets the number of identical apertures of the closing structure. + /// Gets or sets the number of identical apertures of the closing structure. /// public int IdenticalApertures { get; set; } /// - /// Gets the probability of failing to repair a failed closure of the closing structure. + /// Gets or sets the probability of failing to repair a failed closure of the closing structure. /// [1/year] /// public double FailureProbabilityReparation { get; set; } /// - /// Gets the type of closing structure inflow model. + /// Gets or sets the type of closing structure inflow model. /// public ClosingStructureInflowModelType InflowModelType { get; set; } }