Files
laatzen/LaaProductionWeb/LaaProductionWeb.Services/Models/Reports/TestStatus.cs
T
2023-04-27 11:04:12 +02:00

17 lines
373 B
C#

namespace LaaProductionWeb.Services.Models.Reports
{
public class TestStatus
{
public string PosNr { get; set; }
public string SerialNr { get; set; }
public bool? HeliumTest { get; set; }
public bool? PressureTest { get; set; }
public bool? MetroTest { get; set; }
public bool? RadioTest { get; set; }
}
}