My app reads the appsettings.json file in services startup.cs
services.Configure<AppSettings>(Configuration.GetSettings("somedata")
After reading, I'm serving the data while service the JS files.
My quiestion is - there's possible way to read in this way the appsettings and some of the poco will declared as dynamic/JObject?
The appsettings format can changed and the js is ready for this cases.
Thanks!