22 lines
698 B
C#
22 lines
698 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.TIBCO.Transport;
|
|
|
|
public class RunDataSheet
|
|
{
|
|
|
|
[JsonConstructor]
|
|
public RunDataSheet(string loadLockSide, int psn, int reactor, string reactorType)
|
|
{
|
|
PSN = psn;
|
|
LoadLockSide = loadLockSide;
|
|
Reactor = reactor;
|
|
ReactorType = reactorType;
|
|
}
|
|
|
|
[JsonPropertyName("loadLockSide")] public string LoadLockSide { get; } // { init; get; }
|
|
[JsonPropertyName("PSN")] public int PSN { get; } // { init; get; }
|
|
[JsonPropertyName("reactor")] public int Reactor { get; } // { init; get; }
|
|
[JsonPropertyName("reactorType")] public string ReactorType { get; } // { init; get; }
|
|
|
|
} |