14 lines
298 B
C#
14 lines
298 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.TIBCO.Transport;
|
|
|
|
public class ReactorRoot
|
|
{
|
|
|
|
[JsonConstructor]
|
|
public ReactorRoot(Reactor reactor) =>
|
|
Reactor = reactor;
|
|
|
|
[JsonPropertyName("reactor")] public Reactor Reactor { get; } // { init; get; }
|
|
|
|
} |