using System.Text.Json.Serialization; namespace Adaptation.FileHandlers.TIBCO.Transport; public class RunDataSheet { [JsonConstructor] public RunDataSheet(string loadLockSide, int number, int psn, int reactor, string reactorType) { PSN = psn; Number = number; LoadLockSide = loadLockSide; Reactor = reactor; ReactorType = reactorType; } [JsonPropertyName("keyId")] public int Number { get; } // { init; get; } [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; } }