JsonSourceGenerationMode
The generation mode for the System.Text.Json source generator.
namespace System.Text.Json.Serialization
{
[Flags]
public enum JsonSourceGenerationMode
{
Default = 0,
Metadata = 1,
Serialization = 2
}
}