I am trying to serialize/deseralize a vendor json file that contains both camel case and pascal case property names.
The resulting objects use Pascal case for its properties.
What's the proper way of dealing with this situation using System.Text.Json?
{
"name": "test",
"value": {
"Quote": {
"ask": 0,
"bid": 0
},
"CreatedBy": "User"
}
}