I am getting a json result via HTTPClient request using C#, the output will look like mentioned below
{
"status": 1,
"message": "",
"data": {
"username": "abcdefghi",
"password": "oiwenkwjw"
}
}
I need to filter only "data" object using C# in a static class, I have no problem in using LINQ or any other simple method, but no need to create a separate class for it, any small help will be much appreciated, Thank you