| 78 | |
| 79 | |
| 80 | class PracticeCard(PracticeCardBase): |
| 81 | id: uuid.UUID |
| 82 | session_id: uuid.UUID |
| 83 | is_correct: bool | None |
| 84 | is_practiced: bool |
| 85 | created_at: datetime |
| 86 | updated_at: datetime |
| 87 | |
| 88 | |
| 89 | class PracticeSession(PracticeSessionBase): |
no outgoing calls