laatzen/Common/Ui/LegacyGenesisControl/DataPackage/MeterTestSettings.cs
2023-06-01 13:21:26 +02:00

29 lines
888 B
C#

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;
namespace XylemCommonUiLegacyGenCtl.DataPackage
{
public class MeterTestSettings
{
public MeterTypes meterType { get; set; }
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; }
public bool FlowTesting { get; set; }
}
public class MeterTestResults
{
public MeterTypes meterType { get; set; }
public int Slot { get; set; }
public string SerialNr { get; set; }
public List<FlowDeviations> Results { get; set; }
}
}