2022-07-08 16:43:32 -05:00
|
|
|
using System.Text.Json;
|
|
|
|
|
|
|
|
|
|
namespace server.tests.Options
|
|
|
|
|
{
|
|
|
|
|
internal static class OptionsFactory
|
|
|
|
|
{
|
|
|
|
|
public static JsonSerializerOptions GetJsonSerializerOptions()
|
|
|
|
|
{
|
|
|
|
|
return new JsonSerializerOptions
|
|
|
|
|
{
|
|
|
|
|
PropertyNameCaseInsensitive = true
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|