You need to make one another class. That is given below
Public class UserData
{
public User data { get; set; };
}
Now you can Deserialize data using new class called UserData like below
UserData account = JsonSerializer.Deserialize(response.Content, options);