All checks were successful
Run the JSON parser tests / test (push) Has been skipped
7 lines
292 B
C#
7 lines
292 B
C#
namespace Jtr.Tools.API.Requests;
|
|
|
|
public class Json2CsharpRequest : TransformRequest
|
|
{
|
|
public string RootClassName { get; init; } = Json2CSharpTranslator.Context.DefaultRootClassName;
|
|
public string Namespace { get; init; } = Json2CSharpTranslator.Context.DefaultNamespace;
|
|
} |