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; }
}
}