I have a JSON file that lists items that I want to use as the properties in a class. For example,
{
  "id": "cmnsz41@fhfitsocj0wgjeajkgbd#4c4mgkf1vwbh_",
  "displayName": "Archive",
  "parentFolderId": "cmnsz41@fhfitsocj0wgjeajkgbd#4c4mgkf1vwbh_",
  "childFolderCount": 0,
  "unreadItemCount": 0,
  "totalItemCount": 0
}
becomes
public string Archive
{
    get
    {
        return "cmnsz41@fhfitsocj0wgjeajkgbd#4c4mgkf1vwbh_";
    }
}
 
     
    