using Ringtoets.AssemblyTool.Data; namespace Ringtoets.Integration.IO.Assembly { /// /// Class that holds all the information to export 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 of this section. /// The probability of the assembly result of this section. public ExportableSectionAssemblyResultWithProbability(ExportableAssemblyMethod assemblyMethod, FailureMechanismSectionAssemblyCategoryGroup assemblyCategory, double probability) : base(assemblyMethod, assemblyCategory) { Probability = probability; } /// /// Gets the probability of the assembly result of this section. /// public double Probability { get; } } }