001package systems.dmx.core.service.event;
002
003import systems.dmx.core.model.AssociationTypeModel;
004import systems.dmx.core.service.EventListener;
005
006
007
008public interface PreCreateAssociationTypeListener extends EventListener {
009
010    void preCreateAssociationType(AssociationTypeModel model);
011}