2026-01-20 16:45:43 +01:00
|
|
|
using System.Text.Json;
|
|
|
|
|
|
2026-01-22 20:47:55 +00:00
|
|
|
namespace RealCV.Application.Helpers;
|
2026-01-20 16:45:43 +01:00
|
|
|
|
|
|
|
|
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
|
|
|
|
|
};
|
|
|
|
|
}
|