common/Ui/LegacyGenesisControl/DataPackage/MeterTestSettings.cs
2026-04-23 17:50:07 +02:00

31 lines
1.0 KiB
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 Boolean FlowTestingOnlyForward { get; internal set; }
public Boolean FlowTestingOnlyRevers { get; internal 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; }
}
}