Files
group_fqcd_jr/app/api/schemas/investment_goals.py
T

16 lines
382 B
Python

"""HTTP DTOs for investment-goal collection and goal-book review."""
from app.core.investment_goal_contracts import (
InvestmentGoalBookPublish,
InvestmentGoalBookReview,
InvestmentGoalConfirmation,
InvestmentGoalCreate,
)
__all__ = [
"InvestmentGoalBookPublish",
"InvestmentGoalBookReview",
"InvestmentGoalConfirmation",
"InvestmentGoalCreate",
]