//----------------------------------------------------------------------- // // Copyright (c) 2009 Deltares. All rights reserved. // // B.S.T. The // tom.the@deltares.nl // 31-8-2009 // Class with design values for piping //----------------------------------------------------------------------- namespace Deltares.Dam.Data { public class PipingDesign { public double PipingLengthFromToe { get; set; } public double ShoulderHeightFromToe { get; set; } /// /// Constructor /// /// /// public PipingDesign(double pipingLengthFromToe, double shoulderHeight) { PipingLengthFromToe = pipingLengthFromToe; ShoulderHeightFromToe = shoulderHeight; } } }