I am familiar w/ loading an appsettings.json section into a strongly typed object in .NET Core startup.cs. For example:
public class CustomSection { publ
By far the simplest method would be to define your configuration class to inherit from the Dictionary type you want to support.
public class MobileConfigInfo:Dictionary{ }
Then your startup and dependency injection support would be exactly the same as for any other configuration type.