tbf/TBF/BenchControl/Output/FlexFlow/UnitInfoData.cs

28 lines
607 B
C#

using System;
namespace TBF.BenchControl.Output.FlexFlow
{
public class UnitInfoData
{
public string SerialNr;
public string StationName;
public string UserId;
public int Id;
public string Value;
public long FFUnitId;
public long FFTestId;
public long FFPartId;
public UnitInfoData(string serialNr, string stationName, string userId)
{
SerialNr = serialNr;
StationName = stationName;
UserId = userId;
Id = 9999;
Value = string.Empty;
}
}
}