using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Deltares.DamEngine.Calculators.KernelWrappers.Common { public class ShoulderDesign { public double ShoulderLengthFromToe { get; set; } public double ShoulderHeightFromToe { get; set; } /// /// Constructor /// /// /// public ShoulderDesign(double shoulderLengthFromToe, double shoulderHeight) { ShoulderLengthFromToe = shoulderLengthFromToe; ShoulderHeightFromToe = shoulderHeight; } } }