16 lines
332 B
C#
16 lines
332 B
C#
using System.Text.Json;
|
|
|
|
namespace server.tests.Options
|
|
{
|
|
internal static class OptionsFactory
|
|
{
|
|
public static JsonSerializerOptions GetJsonSerializerOptions()
|
|
{
|
|
return new JsonSerializerOptions
|
|
{
|
|
PropertyNameCaseInsensitive = true
|
|
};
|
|
}
|
|
}
|
|
}
|