Jquery – How to pass an class that have objects as properties to an C# API
I am using .NET Core 7.0. I have this endpoint in an API controller: [HttpPost("add")] public string Add([FromForm] LevelData level) { return ""; } This is the class that this method receives: public class LevelData { // public List<IFormFile> NewImageFiles{…