language-learning-app/api/app/domain/models/learnable_language.py

11 lines
180 B
Python
Raw Permalink Normal View History

2026-03-27 10:32:46 +00:00
from dataclasses import dataclass
@dataclass
class LearnableLanguage:
id: str
user_id: str
source_language: str
target_language: str
proficiencies: list[str]