I am converting an existing WebApi from .Net FW to .Net Core 3.1. I have a controller that receives JArray as input to my POST action method. I understand that Newtonsoft support can be continued by using Microsoft.AspNetCore.Mvc.NewtonsoftJson. But If I need to switch to the default System.Text.Json, what will be equivalent data type that I need to use from System.Text.Json to replace JArray?
Thanks!