12 lines
227 B
C#
12 lines
227 B
C#
using System.Text.Json;
|
|
|
|
namespace Services.Common;
|
|
|
|
public static class JsonHelper
|
|
{
|
|
public static readonly JsonSerializerOptions CaseInsensitiveOptions = new()
|
|
{
|
|
PropertyNameCaseInsensitive = true
|
|
};
|
|
}
|