15 lines
431 B
C#
15 lines
431 B
C#
|
|
namespace NetinaCMS.Common.Extensions
|
|||
|
|
{
|
|||
|
|
public static class NewtonJsonExtensions
|
|||
|
|
{
|
|||
|
|
public static JsonSerializerSettings CamelCaseSerialize =>
|
|||
|
|
new()
|
|||
|
|
{
|
|||
|
|
ContractResolver = new DefaultContractResolver
|
|||
|
|
{
|
|||
|
|
NamingStrategy = new CamelCaseNamingStrategy()
|
|||
|
|
},
|
|||
|
|
Formatting = Formatting.Indented
|
|||
|
|
};
|
|||
|
|
}
|
|||
|
|
}
|