A guy at work used:
var s = new JsonSerializerSettings();
s.ContractResolver = new CamelCasePropertyNamesContractResolver();
To create some JSON, but now I have to deserialize into objects that do not use camel case, without use annotations in the (shared) models. Models do not use camel case.
He uses Javascript, so no big deal for him, but I am in C# land.
Is there a "reverse" for CamelCasePropertyNamesContractResolver? I don't see a way to do this without annotations.