Can we access multiple sling model classes to one html file using sightly?
Example: I have two classes MultiDataFetchermodelOne and MultiDataFetchermodelTwo
<div data-sly-use.multiDataFetcher="${'com.myproject.core.models.MultiDataFetchermodelOne'}">
// logic here
</div>
How can I call the 2nd model class (MultiDataFetchermodelTwo) in the same html file?