Export run-data-sheet-root in last-update-user of logistics
Started Bun support but CORS fails process-data-standard-format code alignment
This commit is contained in:
@ -2,13 +2,15 @@ using System.Text.Json.Serialization;
|
||||
|
||||
namespace Adaptation.FileHandlers.TIBCO.Transport;
|
||||
|
||||
#nullable enable
|
||||
|
||||
public class ReactorRoot
|
||||
{
|
||||
|
||||
[JsonConstructor]
|
||||
public ReactorRoot(Reactor reactor) =>
|
||||
public ReactorRoot(Reactor? reactor) =>
|
||||
Reactor = reactor;
|
||||
|
||||
[JsonPropertyName("reactor")] public Reactor Reactor { get; } // { init; get; }
|
||||
[JsonPropertyName("reactor")] public Reactor? Reactor { get; } // { init; get; }
|
||||
|
||||
}
|
Reference in New Issue
Block a user