I have been searching for a solution for a few hours now but haven't found anything that explains my problem. I am an absolute beginner in C# and I need help converting this JSON into C# classes, particularly the fields object that has a key value pair.
Here is what the JSON looks like:
[
 {
   "creationTimestamp": 1485384284523,
   "lastUpdatedTimestamp": 1485384699883,
   "lastStageChangeTimestamp": 1485384284523,
   "fields": {
       "key1": "val1",
       "key2": "val2"
    }
 }
]
Any tips on how to approach this problem would be highly appreciated. Thank you!
 
     
    