JSON Deserialization Multiple Entries

Hello. Is there an easy way to enumerate through this .json and pull out the data I need onto a UI? Stuff like Prop ID, Prop Name, etc. Of courses there's multiple props per .json so I'd need to be able to deserialize them all, edit them, and reserialize back.

{
  "data": [
    {
      "prop_name": "Invalid",
      "unk_14": 3728923965
    },
    {
      "prop_id": 3,
      "prop_name": "Ringbell",
      "state": 1,
      "mdl_path": 7636114012738718880,
      "mtls_path": 5207710352904117017,
      "prop_config_jsfb_path": 17346466537390459746,
      "textures_path": 983795090616222792,
      "unk_14": 3440520905
    },
    {
      "prop_id": 4,
      "type": 3,
      "prop_name": "Dent_able_Chair_Black",
      "state": 1,
      "mdl_path": 11920831628306830712,
      "mtls_path": 2176307239327909185,
      "prop_config_jsfb_path": 18365218056640542593,
      "textures_path": 1591327919772567142,
      "havok_path": 17825444133106620151,
      "sdb_name_id": 3419942826,
      "render_path_1": 14812650683656359252,
      "render_path_2": 3410622199164832471,
      "unk_14": 433605154
    },
    {
      "prop_id": 5,
      "type": 1,
      "prop_name": "table",
      "state": 1,
      "mdl_path": 3544448472792293094,
      "mtls_path": 9384549906439149407,
      "prop_config_jsfb_path": 18081587626750211327,
      "ycl_path": 16030772999323866325,
      "textures_path": 7145355447320130403,
      "havok_path": 14679784151747246516,
      "sdb_name_id": 968076457,
      "render_path_1": 6628166879056395409,
      "render_path_2": 7014051501087692342,
      "unk_14": 3954428193
    }
  ]
}

(WinForms but it dont matter)
Was this page helpful?