I have the following string that I need to convert to a C# class I can use in an ASP.NET WebForms project to replace the values with dynamic data:
{ "customerData": { "firstname": "CALVIN", "lastname": "HOBBS", "password": "2^ib;bTFK:4a", "email": "[email protected]", "group_id": 1, "zoey_customer_confirmation": 2 } }
I tried using the option to paste JSON as a class, but it doesn’t produce the output I need.
Thanks for the help!