using System.Collections.Generic; using Deltares.Mathematics; using Deltares.Standard; namespace Deltares.Stability { public class SlidingPlane : SlidingCurve { private List spencerSlipPlane = new List(); public SlidingPlane() : base() { Name = "Sliding Plane"; } public List SpencerSlipPlane { get { return spencerSlipPlane; } set { spencerSlipPlane = value; } } } }