tbf/TBF/Rig/Network/RestAPI/facade/WaterMeterData.cs

41 lines
1.7 KiB
C#
Raw Normal View History

namespace TBF.Rig.Network.RestAPI.facade
{
/// <summary>
/// The WaterMeterData class represents the server-side data representation for a Water Meter Data.
/// It contains various attributes and their corresponding getter and setter methods.
/// </summary>
public class WaterMeterData
{
public int Id { get; set; }
public string ProductName { get; set; }
public string Producer { get; set; }
public double? Dn { get; set; }
public double? L { get; set; }
public string Mounting { get; set; }
public double? Q4Qmax { get; set; }
public double? Q3Qn { get; set; }
public double? Q2Qt { get; set; }
public double? Q1Qmin { get; set; }
public string MetrologicalClass { get; set; }
public string TemperatureClass { get; set; }
public string PressureLossClass { get; set; }
public string MaxAdmissiblePressure { get; set; }
public string FlowProfileSensitivityClass { get; set; }
public string ApprovalInfo { get; set; }
public string Certificate { get; set; }
public double? PulsesPerLtr { get; set; }
public string ProducerAux { get; set; }
public double? Q3QnAux { get; set; }
public string MetrologicalClassAux { get; set; }
public string ApprovalInfoAux { get; set; }
public string Medium { get; set; }
public string Text1 { get; set; }
public string Text2 { get; set; }
public string Text3 { get; set; }
public string Text4 { get; set; }
public string Text5 { get; set; }
public bool? Compound { get; set; }
public WaterMeterData() { }
}
}