No, models are shareable piece of code, and normally having those pieces pulling data from a particular app-specific structure is bad. Instead, we recommend pushing data/config into the models.
In other words, you can do something like:
var foo = ac.models.get('foo');
foo.doSomething(someData, callback);
where "someData" is something that you can put together in your dispatcher.
That being said, if the model has a "init" method, a config structure, with the mojit's configuration will be passed into it at the moment you access it thru ac.models.get``, and this configuration is a combination of defaults.json (from the mojit itself) and the config fromspecs` in application.json for the mojit's instance.
So, you do have few ways to pass data around :)