Files
Denso/srcs/RobotNet10/Shared/RobotNet.VDA5050/JsonOptionExtends.cs
2026-07-03 16:31:37 +07:00

19 lines
440 B
C#

using System.Text.Json;
namespace RobotNet.VDA5050;
public class JsonOptionExtends
{
public static readonly JsonSerializerOptions Read = new()
{
PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
WriteIndented = true,
};
public static readonly JsonSerializerOptions Write = new()
{
PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
WriteIndented = true,
};
}