common/ProductionUiCordonel/Data/FinalTestStateText.cs
2026-04-23 17:50:07 +02:00

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;
}
}