Copy parts of a domain model to another domain model in another project

1
Is it possible to copy a subset of entities from one domain model to another domain model in another project. If yes, how is this done?
asked
2 answers
1

Export the domain model from the source project, import into target project and copy/paste.

answered
0

a subset of entities, within the same project but different modules? just click on the entity and copy (Ctrl + C) and paste in a new module.

if you want to copy the entities to a brand new module, right click on the module, click Export module. then just delete the items not needed in the new module.

answered