"""Aggregate models for the core app (single migration graph)."""

from apps.core.assistant.models import Conversation, Message, ToolCall
from apps.core.audit.models import AuditLog
from apps.core.authentication.models import CustomUser, Institution, MFADevice, UserProfile
from apps.core.notifications.models import Notification, NotificationPreference

__all__ = [
    "CustomUser",
    "Institution",
    "MFADevice",
    "UserProfile",
    "AuditLog",
    "Notification",
    "NotificationPreference",
    "Conversation",
    "Message",
    "ToolCall",
]
