9 lines
161 B
Python
9 lines
161 B
Python
from dataclasses import dataclass
|
|
|
|
@dataclass
|
|
class User:
|
|
id: int
|
|
username: str
|
|
teams_id: list[int]
|
|
password_hash: str
|
|
is_active: bool = True |