using System.Collections.Generic; using Deltares.AssessmentMechanism; using Deltares.Geotechnics; using Deltares.Geotechnics.WaternetCreator; using Deltares.Standard.Logging; namespace Deltares.Stability { /// /// Class which contains the stability calcualtion result including the sliding curve /// public class StabilityAssessmentCalculationResult : AssessmentCalculationResult { private Location location = null; private Waternet waternet = null; private SlidingCurve curve = null; private List messages = new List(); /// /// Generated waternet /// public Waternet Waternet { get { return waternet; } set { waternet = value; } } /// /// Calculated minimum sliding curve /// public SlidingCurve Curve { get { return curve; } set { curve = value; } } /// /// All log messages during calculation /// public List Messages { get { return messages; } } /// /// Hydraulic location properties /// public Location Location { get { return location; } set { location = value; } } } }