IJsonOnDeserializing
Specifies that the type should have its OnDeserializing method called before deserialization occurs.
namespace System.Text.Json.Serialization
{
public interface IJsonOnDeserializing
{
void OnDeserializing();
}
}