11 lines
180 B
Python
11 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]
|