IJsonOnDeserialized
Specifies that the JSON type should have its OnDeserialized method called after deserialization occurs.
namespace System.Text.Json.Serialization
{
public interface IJsonOnDeserialized
{
void OnDeserialized();
}
}