laatzen/LaaProductionWeb/LaaProductionWeb.Services/Models/TestStatus.cs
2023-04-04 11:12:07 +02:00

17 lines
365 B
C#

namespace LaaProductionWeb.Services.Models
{
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; }
}
}