This commit is contained in:
10
models/member.py
Normal file
10
models/member.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from typing import TypedDict, Optional
|
||||
|
||||
|
||||
class ChatMember(TypedDict):
|
||||
id: int
|
||||
slug: str
|
||||
name: str
|
||||
userpic: Optional[str]
|
||||
last_seen: int
|
||||
online: Optional[bool]
|
Reference in New Issue
Block a user