inbox/models/member.py
Untone fd95d1ee11
All checks were successful
deploy / deploy (push) Successful in 1m10s
some-fixes
2023-11-24 05:20:16 +03:00

11 lines
179 B
Python

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