Files
laatzen/Common/Ui/LegacyGenesisControl/DataPackage/MeterTestSettings.cs
T
2023-05-23 08:44:20 +02:00

28 lines
819 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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<MagfluxDiviations> Results { get; set; }
}
}