I am having an issue with binding in webapi (.net core 2.1). Usually when I use xml/json, I can add attributes to the model props (either via XmlElement or JsonProperty). I have a project however that uses application/x-www-form-urlencoded as media type and thus, the models only work if the names of the params match the property names (luckily case insensitive). Can you advise if there is a way to implement such mapping?