Help : Normally I can pull data into class. but I get an error when importing nested classes

sample yield is below

result": [
{
“force”: 100,
“Date”: “2022-12-28T17:28:09.428Z”,
“forceDate”: “2023-04-13T13:33:55.358Z”,
“isForLove”: false,
“powerAmount”: 0,
“Key”: 10,
“isWaitForExport”: false,
“traitPoint”: 7,
“metadata”: “{“dna”:“891ca6d192774357953f17580d425252525252525252525252a83”,“name”:“Voyager #10”,“description”:\ Voyager”,“image”:“ipfs://QmP3kxht2wE53bpStTBDBXoQR41ASagSC51XroXyNS3xkf/10.gif”,“imageName”:“10.gif”}",
“owner”: {
“force”: 0,
“kodlogin”: “980000000151510010180”,
“startname”: “PIioN5wKZu1g1aeho3mpSCyH1”,
“authData”: {
“moraEth”: {
“id”: “0x97869c5294b0b543e7163236006a73db469551de”,
“signature”: “0asdasdasdsa”,
“chainId”: 56,
“nonce”: “8iJvK19lqJMnaU2524525FOiX”,
“land”: “0x978169C5225252525db469551De”,
“version”: “1”,
“domain”: “.finance”,
“expirationTime”: “2024-01-01T00:00:00.000Z”,
“notBefore”: null,
“resources”: null,
“statement”: “2525252525.”,
“uri”: “.finance”,
“moralisProfileId”: “0x914890ac5ef490597f9008fc6ad823ea949ab3f9d2e0781c444c3db786f13c49”
}
},
“createdAt”: “2022-12-14T22:08:48.375Z”,
“updatedAt”: “2023-04-13T13:31:56.972Z”,
“ethAddress”: “0x97869c5294b0b543e7163236006a73db469551de”,
“balance”: “53200000000000000000000”,
“startComplated”: true,
“pgoneVerified”: false,
“ACL”: {
“oWtW3PTUyZ”: {
“read”: true,
“write”: true
}
},
“objectId”: “oWtW3PTUyZ”,
“__type”: “Object”,
“className”: “_User”
},
“inventoryLimit”: 16,
“activeWearableSlot”: 1,
“objectId”: “U429XQ7P1hp”
}
]
}

my code sample what do you think is the problem
how do i pull data from nestad?
var result = await ParseCloud.CallFunctionAsync<List>(“getNFTsInGame”, null);

        string json = JsonConvert.SerializeObject(result[0]);
        Debug.Log("json "+ json.ToString());

        Dictionary<string, object> data = JsonConvert.DeserializeObject<Dictionary<string, object>>(json.ToString());