Ready to test
This commit is contained in:
18
Adaptation/FileHandlers/TIBCO/Transport/RunDataSheet.cs
Normal file
18
Adaptation/FileHandlers/TIBCO/Transport/RunDataSheet.cs
Normal file
@ -0,0 +1,18 @@
|
||||
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; }
|
||||
|
||||
}
|
Reference in New Issue
Block a user