Hi guys I would like to ask for some help on how to deserialize an indefinite number of json array? Like this returned json array object contains 170 arrays. Here is my code for json array returned object
`public class HistoryData
{
public string date_time { get; set; }
public string url { get; set; }
public string browser_source { get; set; }
}
public class InsideDataArray
{
public HistoryData[] data { get; set; }
}
public class DataArray
{
public InsideDataArray[] data { get; set; }
}
public class BrowsingDataObject
{
public string api_msg { get; set; }
public string api_code { get;set; }
public string api_status { get; set; }
public DataArray data { get; set; }
}'

BrowsingDataObjectseems to contain an objectData, which contains an arraydata, whose items themselves contains an arrayData. I would expect the JSON to therefore look like this:{ "api_msg": "abc", "api_code": "def", "api_status": "ghi", "data": { "data": [ { "data": [ { "date_time": "2021-09-09", "url": "https://www.google.com/", "browser_source": "Google" } ] } ] } }. That looks absolutely nothing like the rendered JSON tree you have in the question.{ ... }) -> C# class. JSON array ([...]) -> C# collection type (list, array, ienumerable, etc.).