23 lines
527 B
C#
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; }
|
|
}
|
|
}
|