Files
inbox/models/member.py

11 lines
179 B
Python
Raw Normal View History

2023-12-17 20:13:17 +03:00
from typing import Optional, TypedDict
2023-10-14 17:55:51 +03:00
class ChatMember(TypedDict):
id: int
slug: str
name: str
2023-11-24 05:20:16 +03:00
pic: Optional[str]
2023-11-16 17:58:14 +03:00
last_seen: int
2023-10-14 17:55:51 +03:00
online: Optional[bool]