ProcessDataStandardFormat
run.json descriptions.json Infineon.Mesa.PDF.Text.Stripper 4.8.0.2 MSTEST0037
This commit is contained in:
@ -1,24 +1,26 @@
|
||||
namespace Adaptation.FileHandlers.TIBCO.Transport;
|
||||
|
||||
#nullable enable
|
||||
|
||||
public class Input
|
||||
{
|
||||
|
||||
public string Area { get; }
|
||||
public string EquipmentType { get; }
|
||||
public string MID { get; }
|
||||
public string Slot { get; }
|
||||
public string MesEntity { get; }
|
||||
public string Recipe { get; }
|
||||
public string Sequence { get; }
|
||||
public string? Area { get; }
|
||||
public string? EquipmentType { get; }
|
||||
public string? MID { get; }
|
||||
public string? Slot { get; }
|
||||
public string? MesEntity { get; }
|
||||
public string? Recipe { get; }
|
||||
public string? Sequence { get; }
|
||||
|
||||
[System.Text.Json.Serialization.JsonConstructor]
|
||||
public Input(string area,
|
||||
string equipmentType,
|
||||
string mid,
|
||||
string slot,
|
||||
string mesEntity,
|
||||
string recipe,
|
||||
string sequence)
|
||||
public Input(string? area,
|
||||
string? equipmentType,
|
||||
string? mid,
|
||||
string? slot,
|
||||
string? mesEntity,
|
||||
string? recipe,
|
||||
string? sequence)
|
||||
{
|
||||
|
||||
Area = area;
|
||||
@ -30,7 +32,7 @@ public class Input
|
||||
Sequence = sequence;
|
||||
}
|
||||
|
||||
internal Input(Input input, string mid)
|
||||
internal Input(Input input, string? mid)
|
||||
{
|
||||
Area = input.Area;
|
||||
EquipmentType = input.EquipmentType;
|
||||
|
Reference in New Issue
Block a user