JSON serializer implementation.
$ dotnet add package assistant.net.serialization.jsonJSON format serializer implementation of assistant.net.serialization
based on System.Text.Json.
JSON configuration sample
services.AddSerializer(b => b
.UseJson() // required
.AddJsonConverter<CustomJsonConverter>()); // optional
System.Text.Json backed serializer can be configured separately
services.ConfigureJsonSerializerOptions(o => o.Converters.TryAdd(new CustomJsonConverter()));