I am working with a bunch of JSON files that I need to deserialize . A proper I am facing is that some of the Content in the JSON files do not follow proper coding standards , hence when I create the POCO classes I am violating naming conventions
Below is a small example
{
"category": "classified"
}
In this case I would have to create a POCO class as
public class Category
{
public string category{ get; set; }
}
here I am starting a property name in a simple letter which is bad naming convention in C#.
Anything I can do about that ?