<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />

DefaultNamingStrategy

The default naming strategy. Property names and dictionary keys are unchanged.
using System.Runtime.CompilerServices; namespace Newtonsoft.Json.Serialization { public class DefaultNamingStrategy : NamingStrategy { [System.Runtime.CompilerServices.NullableContext(1)] protected override string ResolvePropertyName(string name) { return name; } } }