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