42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
namespace LaaProductionWeb.Blazor.Components.HeliumTester.Models
|
|
{
|
|
public class OverallMatch
|
|
{
|
|
public int HeliumVariantId { get; set; }
|
|
|
|
public string HeliumRegionCode { get; set; }
|
|
|
|
public string HeliumRegion { get; set; }
|
|
|
|
public string HeliumMeterSizeCode { get; set; }
|
|
|
|
public string HeliumMeterSize { get; set; }
|
|
|
|
public string HeliumBodyLengthCode { get; set; }
|
|
|
|
public int HeliumBodyLength { get; set; }
|
|
|
|
public string HeliumPressureSensorCode { get; set; }
|
|
|
|
public bool HeliumHasPressureSensor { get; set; }
|
|
|
|
public int WaterVariantId { get; set; }
|
|
|
|
public string WaterRegionCode { get; set; }
|
|
|
|
public string WaterRegion { get; set; }
|
|
|
|
public string WaterMeterSizeCode { get; set; }
|
|
|
|
public string WaterMeterSize { get; set; }
|
|
|
|
public string WaterBodyLengthCode { get; set; }
|
|
|
|
public int WaterBodyLength { get; set; }
|
|
|
|
public string WaterPressureSensorCode { get; set; }
|
|
|
|
public bool WaterHasPressureSensor { get; set; }
|
|
}
|
|
}
|