using System.Text.Json; namespace TrueCV.Application.Helpers; public static class JsonDefaults { public static readonly JsonSerializerOptions CamelCase = new() { PropertyNamingPolicy = JsonNamingPolicy.CamelCase, PropertyNameCaseInsensitive = true }; public static readonly JsonSerializerOptions CamelCaseIndented = new() { PropertyNamingPolicy = JsonNamingPolicy.CamelCase, PropertyNameCaseInsensitive = true, WriteIndented = true }; }