using System.Collections.Generic; using Deltares.Standard; using Deltares.Standard.Attributes; using Deltares.Standard.Units; namespace Deltares.Stability { public class ProbabilisticResult { private double beta = 0; private double failure = 0; private Dictionary influenceFactors = new Dictionary(); private double waterLevel = 0; public ProbabilisticResult() {} [Unit(UnitType.None)] [Format("F3")] public double Beta { get { return beta; } set { beta = value; } } [Unit(UnitType.None)] [Format("G3")] public double Failure { get { return failure; } set { failure = value; } } public double WaterLevel { get { return waterLevel; } set { waterLevel = value; } } public Dictionary InfluenceFactors { get { return influenceFactors; } set { influenceFactors = value; } } public string WaterLevelName { get; set; } } }