17 lines
365 B
C#
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; }
|
|
}
|
|
} |