|
using System.Text.Json;
|
|
|
|
namespace PkmnLib.Dataloader;
|
|
|
|
internal static class JsonOptions
|
|
{
|
|
public static JsonSerializerOptions DefaultOptions => new()
|
|
{
|
|
PropertyNameCaseInsensitive = true,
|
|
AllowTrailingCommas = true,
|
|
ReadCommentHandling = JsonCommentHandling.Skip,
|
|
};
|
|
} |