20 lines
504 B
C#
20 lines
504 B
C#
|
|
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
|
||
|
|
};
|
||
|
|
}
|