2023-06-13 11:33:29 -05:00

12 lines
227 B
C#

using System.Text.Json;
namespace Services.Common;
public static class JsonHelper
{
public static readonly JsonSerializerOptions CaseInsensitiveOptions = new()
{
PropertyNameCaseInsensitive = true
};
}