using Ringtoets.AssemblyTool.Data;
namespace Ringtoets.Integration.IO.Assembly
{
///
/// Class that represents an assembly result with a probability for a failure mechanism section.
///
public class ExportableSectionAssemblyResultWithProbability : ExportableSectionAssemblyResult
{
///
/// Creates a new instance of .
///
/// The method that was used to assemble this result.
/// The assembly result.
/// The probability of the assembly result.
public ExportableSectionAssemblyResultWithProbability(ExportableFailureMechanismSectionAssemblyMethod assemblyMethod,
FailureMechanismSectionAssemblyCategoryGroup assemblyCategory,
double probability)
: base(assemblyMethod, assemblyCategory)
{
Probability = probability;
}
///
/// Gets the probability of the assembly result.
///
public double Probability { get; }
}
}