"""SQLAlchemy ORM models for the CRM system.""" from app.models.base import Base, OrgScopedMixin, SoftDeleteMixin, TimestampMixin from app.models.org import Org from app.models.user import User, UserRole __all__ = [ "Base", "Org", "OrgScopedMixin", "SoftDeleteMixin", "TimestampMixin", "User", "UserRole", ]