tbf/TBF/BenchControl/DataEntry/S620/BodySerNrResult.cs

27 lines
570 B
C#

///
/// Copyright (c) 2020 Sensus Slovensko a.s.
///
using System;
namespace TBF.BenchControl.DataEntry.S620
{
public class BodySerNrResult
{
public string BodyNr;
public int SerialNr;
public int Result;
public BodySerNrResult(string bodyNr, int serialNr, int result)
{
BodyNr = bodyNr;
SerialNr = serialNr;
Result = result;
}
public override string ToString()
{
return string.Format("{0}-{1}-{2}", BodyNr, SerialNr, Result);
}
}
}