using Ringtoets.AssemblyTool.Data;
namespace Ringtoets.Integration.IO.Assembly
{
///
/// Class that holds the information to export the assembly result of a failure mechanism.
///
public class ExportableFailureMechanismAssemblyResult
{
///
/// Creates a new instance of .
///
/// The method that was used to assemble this result.
/// The assembly result.
public ExportableFailureMechanismAssemblyResult(ExportableAssemblyMethod assemblyMethod,
FailureMechanismAssemblyCategoryGroup assemblyCategory)
{
AssemblyMethod = assemblyMethod;
AssemblyCategory = assemblyCategory;
}
///
/// Gets the assembly method that was used to assembly the assembly result.
///
public ExportableAssemblyMethod AssemblyMethod { get; }
///
/// Gets the assembly category result.
///
public FailureMechanismAssemblyCategoryGroup AssemblyCategory { get; }
}
}