20 lines
457 B
C#
20 lines
457 B
C#
using System;
|
|
|
|
namespace ProductionUiCordonelLegacy.Data
|
|
{
|
|
/// <summary>
|
|
/// Concatenation between final test state and text
|
|
/// </summary>
|
|
public struct FinalTestStateText
|
|
{
|
|
/// <summary>
|
|
/// The state of the final test
|
|
/// </summary>
|
|
public FinalTestState State;
|
|
/// <summary>
|
|
/// The message text of the final test state
|
|
/// </summary>
|
|
public String Message;
|
|
}
|
|
}
|