C#C
C#2y ago
Alex

How to deserialize only child object

I have a json structure and I need only studiableItems data. How can I deserialize only it without creating classes for parent items?
{
 "props":{
        "pageProps": {
            "dehydratedReduxStateKey": {
                "studyModesCommon": {
                    "studiableData": {
                        "studiableItems": [
                            {""item1"": ""data1""},
                            {""item2"": ""data2""},
                            {""item3"": ""data3""}
                        ]
                    }
                }
            }
        }
    }
}
Was this page helpful?