13 lines
246 B
C#
13 lines
246 B
C#
using System.Text.Json;
|
|
|
|
namespace CommIpc;
|
|
|
|
internal static class IpcJson
|
|
{
|
|
public static readonly JsonSerializerOptions Options = new()
|
|
{
|
|
PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
|
|
WriteIndented = false
|
|
};
|
|
}
|