common/Logic/ProductionOrderCore/ProcessState/PressureTestResult.cs
2026-04-23 17:50:07 +02:00

23 lines
527 B
C#

using System;
namespace Xylem.Common.Logic.ProductionOrderCore.ProcessState
{
public class PressureTestResult
{
/// <summary>
/// Test passed successfully
/// </summary>
public Boolean Passed { get; set; }
/// <summary>
/// Identifier of test station
/// </summary>
public Int32? StationId { get; set; }
/// <summary>
/// Test from operator
/// </summary>
public String FreeText { get; set; }
}
}