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