Deserializuj obiekt JSON do obiektu C #

Próbuję odczytać niektóre dane json za pomocą RestSharp.

Ale mam problemy z czytaniem obiektów json. Mam te odpowiedzi:

<code>expand: "html",
self: "<url>/INCIDENT-447",   
key: "INCIDENT-447",
fields: {
  customfield_11414: {
  name: "Corrective Measures",
  type: "com.atlassian.jira.plugin.system.customfieldtypes:textarea"
},
  summary: {
  name: "summary",
  type: "java.lang.String",
  value: "BLA BLA BLA"
},  
</code>

Muszę utworzyć obiekt za pomocą letniego obiektu i customfield_11414 Ale potrzebuję tylko ich wartości. Nie cały obiekt JSON

questionAnswers(2)

yourAnswerToTheQuestion