Can C# convert a Dictionary<string, Dictionary<string,string>> to a JsonObject?
I am trying to return JsonObject as the interface of my method is - public Task<ServiceResult<JsonObject>> GetTranslation(string language); but my test fails at expectedData: var apiResponse = new Dictionary<string, Dictionary<string, string>>() { { "PAGE_NAME", new Dictionary<string, string>() { { "KEY_NAME",…