Started Bun support but CORS fails process-data-standard-format code alignment
16 lines
318 B
C#
16 lines
318 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.TIBCO.Transport;
|
|
|
|
#nullable enable
|
|
|
|
public class ReactorRoot
|
|
{
|
|
|
|
[JsonConstructor]
|
|
public ReactorRoot(Reactor? reactor) =>
|
|
Reactor = reactor;
|
|
|
|
[JsonPropertyName("reactor")] public Reactor? Reactor { get; } // { init; get; }
|
|
|
|
} |