hello,
I am getting response output from Postman as -
{
Result :
Id : 1,
Name : Ramesh,
Designation : Manager
}
So in my mvc web api project, I'm getting Result , but i want separate property of it, something like :
HCOutput output = New HCOutput();
var aa = output.Result.Name;
output.Result.Id;
so how it can be done? is it serialization ?