Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingSoilLayer.cs =================================================================== diff -u -ra140d91d4a6eb13a999467f3613605b82066e585 -r1e2f10592270d6b14fddf6286d10091086d5c6a7 --- Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingSoilLayer.cs (.../PipingSoilLayer.cs) (revision a140d91d4a6eb13a999467f3613605b82066e585) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingSoilLayer.cs (.../PipingSoilLayer.cs) (revision 1e2f10592270d6b14fddf6286d10091086d5c6a7) @@ -1,17 +1,43 @@ namespace Ringtoets.Piping.Data { + /// + /// This class represents profiles that were imported from D-Soil Model and will later on be used to create the + /// necessary input for executing a piping calculation. + /// public class PipingSoilLayer { + /// + /// Creates a new instance of , where the top is set to . + /// + /// public PipingSoilLayer(double top) { Top = top; } + /// + /// Gets the top level of the . + /// public double Top { get; private set; } + + /// + /// Gets or sets whether the is an aquifer. + /// public bool IsAquifer { get; set; } + /// + /// Gets or sets the above phreatic level for the . + /// public double? AbovePhreaticLevel { get; set; } + + /// + /// Gets or sets the below phreatic level for the . + /// public double? BelowPhreaticLevel { get; set; } + + /// + /// Gets or sets the dry unit weight for the . + /// public double? DryUnitWeight { get; set; } } } \ No newline at end of file