namespace Ringtoets.Integration.IO.Assembly
{
///
/// Enum defining the exportable failure mechanism groups.
///
public enum ExportableFailureMechanismGroup
{
///
/// Represents the failure mechanism group 1.
///
Group1 = 1,
///
/// Represents the failure mechanism group 2.
///
Group2 = 2,
///
/// Represnts the failure mechanism group 3.
///
Group3 = 3,
///
/// Represents the failure mechanism group 4.
///
Group4 = 4
}
}