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 Results { get; set; } } }