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