16 lines
338 B
Python
16 lines
338 B
Python
"""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",
|
|
]
|