2021-10-01 09:09:20 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
2023-06-01 11:21:26 +00:00
|
|
|
|
using Xylem.Common.Hardware.WaterMeter.DataPackages.MeasurementRecords;
|
2023-05-08 15:26:40 +00:00
|
|
|
|
using Xylem.Common.Hardware.WaterMeter.WaterMeterCore;
|
2021-10-01 09:09:20 +00:00
|
|
|
|
|
|
|
|
|
|
namespace XylemCommonUiLegacyGenCtl.DataPackage
|
|
|
|
|
|
{
|
|
|
|
|
|
public class MeterTestSettings
|
|
|
|
|
|
{
|
2023-05-08 15:26:40 +00:00
|
|
|
|
public MeterTypes meterType { get; set; }
|
2021-10-01 09:09:20 +00:00
|
|
|
|
public int Slot { get; set; }
|
|
|
|
|
|
public string SerialNr { get; set; }
|
|
|
|
|
|
public bool FlowAdjustment { get; set; }
|
|
|
|
|
|
public decimal FlowAdjustmentTarget { get; set; }
|
|
|
|
|
|
public bool PreAdjustment { get; set; }
|
2022-04-06 08:42:16 +00:00
|
|
|
|
public bool FlowTesting { get; set; }
|
2023-06-29 07:36:13 +00:00
|
|
|
|
public Boolean FlowTestingOnlyForward { get; internal set; }
|
|
|
|
|
|
public Boolean FlowTestingOnlyRevers { get; internal set; }
|
2021-10-01 09:09:20 +00:00
|
|
|
|
}
|
2023-05-23 06:44:20 +00:00
|
|
|
|
|
|
|
|
|
|
public class MeterTestResults
|
|
|
|
|
|
{
|
|
|
|
|
|
public MeterTypes meterType { get; set; }
|
|
|
|
|
|
public int Slot { get; set; }
|
|
|
|
|
|
public string SerialNr { get; set; }
|
2023-05-31 08:35:35 +00:00
|
|
|
|
public List<FlowDeviations> Results { get; set; }
|
2023-05-23 06:44:20 +00:00
|
|
|
|
}
|
2021-10-01 09:09:20 +00:00
|
|
|
|
}
|