Asp.net – Deserialize JSON objects do different class names
I am using System.Text.Json to deserialize objects from an external API call in C#. I have created the classes for the data and is very straight-forward. public class DocumentListRoot { public List<LevelDocumentList> LevelDocumentList { get; set; } public string FileNumber…