Consider following piece of some controller's code:
return Json(Result.Succeed());
Output it produces is { "Success": true }, because underlying model property is declared as bool Sucess (uppercase). I'd like Json(...) to spit out camelCaseFormatted json as it is conventional in the js/typescript world.
So even tought model's property is Success, I'd like respond to be success.
How can I configure that one?