| 87 | |
| 88 | |
| 89 | class PracticeSession(PracticeSessionBase): |
| 90 | id: uuid.UUID |
| 91 | user_id: uuid.UUID |
| 92 | is_completed: bool |
| 93 | total_cards: int |
| 94 | cards_practiced: int |
| 95 | correct_answers: int |
| 96 | created_at: datetime |
| 97 | updated_at: datetime |
| 98 | practice_cards: list[PracticeCard] |
| 99 | |
| 100 | |
| 101 | class PracticeSessionList(SQLModel): |
no outgoing calls