System.Text.Json.Serialization.JsonPropertyNameAttribute
Specifies the property name that is present in the JSON when serializing and deserializing.
namespace System.Text.Json.Serialization
{
public sealed class JsonPropertyNameAttribute : JsonAttribute
{
public string Name { get; }
public JsonPropertyNameAttribute(string name);
}
}