38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace TBF.Rig.Network.RestAPI.facade
|
|
{
|
|
/// <summary>
|
|
/// WaterMeter class represents a water meter output to the server side. It contains various properties related to the water meter.
|
|
/// This class serves as a model object for the water meter.
|
|
/// </summary>
|
|
public class WaterMeter
|
|
{
|
|
public int? OrderID { get; set; }
|
|
public string OrderName { get; set; }
|
|
public string BoxId { get; set; }
|
|
public string SerialNo { get; set; }
|
|
|
|
public int? WaterMeterID { get; set; }
|
|
public bool? Passed { get; set; }
|
|
public string SerialNrAux { get; set; }
|
|
public string RadioAddress { get; set; }
|
|
public int? YearOfProduction { get; set; }
|
|
public int? WmPosition { get; set; }
|
|
|
|
public string EndState { get; set; }
|
|
public string EndStateAux { get; set; }
|
|
public double? QRise { get; set; }
|
|
public double? QFall { get; set; }
|
|
public int? ResultCode { get; set; }
|
|
public string ArchivePath { get; set; }
|
|
public string Remark { get; set; }
|
|
|
|
public WaterMeterData WaterMeterData { get; set; }
|
|
public Batch Batch { get; set; }
|
|
|
|
public List<TestResults> TestResultsList { get; set; }
|
|
|
|
public WaterMeter() { }
|
|
}
|
|
} |