PkmnLib.NET/PkmnLib.Dataloader/JsonOptions.cs

13 lines
306 B
C#
Raw Normal View History

using System.Text.Json;
namespace PkmnLib.Dataloader;
internal static class JsonOptions
{
2025-03-02 16:19:57 +00:00
public static JsonSerializerOptions DefaultOptions => new()
{
PropertyNameCaseInsensitive = true,
AllowTrailingCommas = true,
ReadCommentHandling = JsonCommentHandling.Skip,
};
}