feat: add SurveyInvite model

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
chihlasm
2026-03-05 01:39:29 -05:00
parent 9bb69254df
commit 56ae39ca01
3 changed files with 32 additions and 0 deletions

View File

@@ -32,6 +32,8 @@ from .ai_chat_session import AIChatSession
from .tree_embedding import TreeEmbedding
from .copilot_conversation import CopilotConversation
from .assistant_chat import AssistantChat
from .survey_response import SurveyResponse
from .survey_invite import SurveyInvite
__all__ = [
"User",
@@ -75,4 +77,6 @@ __all__ = [
"TreeEmbedding",
"CopilotConversation",
"AssistantChat",
"SurveyResponse",
"SurveyInvite",
]