namespace Ringtoets.HydraRing.Calculation.Settings
{
///
/// Container for failure mechanims settings.
///
public class FailureMechanismSettings
{
private readonly double valueMin;
private readonly double valueMax;
///
/// Creates a new instance of the class.
///
/// The minimum value to use while iterating to a target probability.
/// The maximum value to use while iterating to a target probability.
public FailureMechanismSettings(double valueMin, double valueMax)
{
this.valueMin = valueMin;
this.valueMax = valueMax;
}
///
/// Gets the minimum value to use while iterating to a target probability.
///
public double ValueMin
{
get
{
return valueMin;
}
}
///
/// Gets the maximum value to use while iterating to a target probability.
///
public double ValueMax
{
get
{
return valueMax;
}
}
}
}