inbox/models/member.py
Untone 856a331836
Some checks failed
deploy / deploy (push) Failing after 1m12s
some-fixes
2023-11-22 15:09:24 +03:00

11 lines
183 B
Python

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