using System;
namespace ProductionUiCordonelLegacy.Data
{
///
/// Concatenation between final test state and text
///
public struct FinalTestStateText
{
///
/// The state of the final test
///
public FinalTestState State;
///
/// The message text of the final test state
///
public String Message;
}
}