Add new changes to client profile and related files

This commit is contained in:
2026-02-05 14:03:56 -07:00
parent 896c99d586
commit ea682d8cd9
11 changed files with 2761 additions and 243 deletions

View File

@@ -0,0 +1,19 @@
"""Models package initialization."""
from .user import User
from .tenant import Tenant
from .ticket import Ticket
from .comment import TicketComment
from .system import System
from .category import Category
from .client_profile import ClientProfile
__all__ = [
"User",
"Tenant",
"Ticket",
"TicketComment",
"System",
"Category",
"ClientProfile"
]