inbox/models/member.py
Untone 517de93ccd
All checks were successful
deploy / deploy (push) Successful in 1m11s
sorted
2023-12-17 20:13:17 +03:00

11 lines
179 B
Python

from typing import Optional, TypedDict
class ChatMember(TypedDict):
id: int
slug: str
name: str
pic: Optional[str]
last_seen: int
online: Optional[bool]