Given your question, you're referring to the model as a single entity (e.g. the user model). If you take the only the model and forget about the application, the model is literally what the word states, a conceptual model.
A domain model in problem solving and software engineering can be
thought of as a conceptual model of a domain of interest (often
referred to as a problem domain) which describes the various entities,
their attributes, roles and relationships, plus the constraints that
govern the integrity of the model elements comprising that problem
domain.
http://en.wikipedia.org/wiki/Domain_model
A mental model captures ideas in a problem domain, while a conceptual
model represents 'concepts' (entities) and relationships between them.
A Conceptual model in the field of computer science is also known as a
domain model.
http://en.wikipedia.org/wiki/Conceptual_model_(computer_science)
Answering your question: Your domain model will be composed of entities with associations between then, in other words, one single entity can have a composition containing a collection of other entities (associations or aggregations).
A Domain Model creates a web of interconnected objects, where each
object represents some meaningful individual, whether as large as a
corporation or as small as a single line on an order form.
http://martinfowler.com/eaaCatalog/domainModel.html
In order to it turn into a layer of something else, you need to jump from the OOA (Object-oriented Analyzes) to the OOD (object-oriented Design).
Object-oriented analysis (OOA) applies object-modeling techniques to
analyze the functional requirements for a system. Object-oriented
design (OOD) elaborates the analysis models to produce implementation
specifications. OOA focuses on what the system does, OOD on how the
system does it.
http://en.wikipedia.org/wiki/Object-oriented_analysis_and_design
So, keep in mind the two meanings of the "model" keyword. It can be the mental model of the problem domain or a layer of your application describing how the mental model will be technically implemented.