18 lines
401 B
C#
18 lines
401 B
C#
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; }
|
|
|
|
} |