laatzen/Common/Ui/LegacyGenesisControl/DataPackage/MeterTestSettings.cs

31 lines
1.0 KiB
C#
Raw Normal View History

2021-10-01 09:09:20 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Xylem.Common.Hardware.WaterMeter.DataPackages.MeasurementRecords;
using Xylem.Common.Hardware.WaterMeter.WaterMeterCore;
2021-10-01 09:09:20 +00:00
namespace XylemCommonUiLegacyGenCtl.DataPackage
{
public class MeterTestSettings
{
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
}