from dataclasses import dataclass @dataclass class User: id: int username: str teams_id: list[int] password_hash: str is_active: bool = True