<PackageReference Include="System.Text.Json" Version="9.0.0-preview.2.24128.5" />

PropertyRef

struct PropertyRef
namespace System.Text.Json.Serialization.Metadata { internal readonly struct PropertyRef { public readonly ulong Key; public readonly JsonPropertyInfo Info; public readonly byte[] NameFromJson; public PropertyRef(ulong key, JsonPropertyInfo info, byte[] nameFromJson) { Key = key; Info = info; NameFromJson = nameFromJson; } } }