Initial commit
This commit is contained in:
12
CommIpc/IpcJson.cs
Normal file
12
CommIpc/IpcJson.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Text.Json;
|
||||
|
||||
namespace CommIpc;
|
||||
|
||||
internal static class IpcJson
|
||||
{
|
||||
public static readonly JsonSerializerOptions Options = new()
|
||||
{
|
||||
PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
|
||||
WriteIndented = false
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user