using System.Text.Json.Serialization; namespace Adaptation.FileHandlers.TIBCO.Transport; public class RunDataSheet { [JsonConstructor] public RunDataSheet(int psn, int reactor) { PSN = psn; Reactor = reactor; } [JsonPropertyName("PSN")] public int PSN { get; } // { init; get; } [JsonPropertyName("reactor")] public int Reactor { get; } // { init; get; } }