| 37 | |
| 38 | @dataclasses.dataclass |
| 39 | class UserModel(models.UserProtocol[IDType]): |
| 40 | email: str |
| 41 | hashed_password: str |
| 42 | id: IDType = dataclasses.field(default_factory=uuid.uuid4) |
| 43 | is_active: bool = True |
| 44 | is_superuser: bool = False |
| 45 | is_verified: bool = False |
| 46 | first_name: str | None = None |
| 47 | |
| 48 | |
| 49 | @dataclasses.dataclass |
no outgoing calls
searching dependent graphs…