Set the JSON property naming policy to CamelCase for consistency

This commit is contained in:
Thorsten Sommer 2025-03-06 20:44:05 +01:00
parent a66d88c989
commit e59d5f08a5
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -9,7 +9,7 @@ public abstract class ERIClientBase(string baseAddress) : IDisposable
{ {
WriteIndented = true, WriteIndented = true,
AllowTrailingCommas = true, AllowTrailingCommas = true,
PropertyNamingPolicy = null, PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
DictionaryKeyPolicy = JsonNamingPolicy.CamelCase, DictionaryKeyPolicy = JsonNamingPolicy.CamelCase,
PropertyNameCaseInsensitive = true, PropertyNameCaseInsensitive = true,
Converters = Converters =