Files
RealCV/src/RealCV.Application/Helpers/JsonDefaults.cs

20 lines
504 B
C#
Raw Normal View History

using System.Text.Json;
namespace RealCV.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
};
}