load-lock-side from reactor and open-insight api
This commit is contained in:
@ -7,15 +7,17 @@ public class Input
|
||||
|
||||
public string? Area { get; }
|
||||
public string? EquipmentType { get; }
|
||||
public string? MID { get; }
|
||||
public string? Slot { get; }
|
||||
public string? LoadLock { get; }
|
||||
public string? MesEntity { get; }
|
||||
public string? MID { get; }
|
||||
public string? Recipe { get; }
|
||||
public string? Sequence { get; }
|
||||
public string? Slot { get; }
|
||||
|
||||
[System.Text.Json.Serialization.JsonConstructor]
|
||||
public Input(string? area,
|
||||
string? equipmentType,
|
||||
string? loadLock,
|
||||
string? mid,
|
||||
string? slot,
|
||||
string? mesEntity,
|
||||
@ -25,6 +27,7 @@ public class Input
|
||||
|
||||
Area = area;
|
||||
EquipmentType = equipmentType;
|
||||
LoadLock = loadLock;
|
||||
MID = mid;
|
||||
Slot = slot;
|
||||
MesEntity = mesEntity;
|
||||
@ -36,6 +39,7 @@ public class Input
|
||||
{
|
||||
Area = input.Area;
|
||||
EquipmentType = input.EquipmentType;
|
||||
LoadLock = input.LoadLock;
|
||||
MID = mid;
|
||||
Slot = input.Slot;
|
||||
MesEntity = input.MesEntity;
|
||||
|
Reference in New Issue
Block a user