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

10 lines
180 B
Python

from dataclasses import dataclass
@dataclass
class LearnableLanguage:
id: str
user_id: str
source_language: str
target_language: str
proficiencies: list[str]