36 lines
1.3 KiB
C#
36 lines
1.3 KiB
C#
using System;
|
|
|
|
namespace TBF.Rig.Network.RestAPI.facade
|
|
{
|
|
/// <summary>
|
|
/// Represents the information transfer between a Water Meter and the Server side. This class contains the batch-related information.
|
|
/// </summary>
|
|
public class Batch
|
|
{
|
|
public int Id { get; set; }
|
|
public int? BatchNr { get; set; }
|
|
public int? TestBenchId { get; set; }
|
|
public string ProgramVersion { get; set; }
|
|
public string UserName { get; set; }
|
|
public int? UserNumber { get; set; }
|
|
public string ProcedureName { get; set; }
|
|
public int? ProcedureRevision { get; set; }
|
|
public string ProtocolTitle { get; set; }
|
|
public string Remark { get; set; }
|
|
public double? Custom1 { get; set; }
|
|
public double? Custom2 { get; set; }
|
|
public double? Custom3 { get; set; }
|
|
public int? Counter6 { get; set; }
|
|
public int? Counter7 { get; set; }
|
|
public int? Counter8 { get; set; }
|
|
public int? Counter9 { get; set; }
|
|
public int? Counter10 { get; set; }
|
|
public DateTime? StartTime { get; set; }
|
|
public DateTime? EndTime { get; set; }
|
|
public bool? Dirty { get; set; }
|
|
public bool? RsltsSent { get; set; }
|
|
public bool? RsltsPrinted { get; set; }
|
|
|
|
public Batch() { }
|
|
}
|
|
} |