Index: dam engine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/DamPipingBligh/DamPipingBlighOutput.cs =================================================================== diff -u -r638 -r672 --- dam engine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/DamPipingBligh/DamPipingBlighOutput.cs (.../DamPipingBlighOutput.cs) (revision 638) +++ dam engine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/DamPipingBligh/DamPipingBlighOutput.cs (.../DamPipingBlighOutput.cs) (revision 672) @@ -3,10 +3,32 @@ namespace Deltares.DamEngine.Calculators.KernelWrappers.DamPipingBligh { + /// + /// Output class for piping Bligh + /// + /// public class DamPipingBlighOutput : IKernelDataOutput { + /// + /// Gets or sets the calculation result. + /// + /// + /// The calculation result. + /// public CalculationResult CalculationResult { get; set; } + /// + /// Gets or sets the safetyfactor for Bligh. + /// + /// + /// The fo sp. + /// public double FoSp { get; set; } + /// + /// Gets or sets the H-critical. + /// + /// + /// The hc. + /// public double Hc { get; set; } } }