mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 20:14:51 +00:00
Add ChatPhoto type
This commit is contained in:
parent
345da2fccd
commit
76b78f6a9e
1 changed files with 6 additions and 0 deletions
6
pyrogram/client/types/chat_photo.py
Normal file
6
pyrogram/client/types/chat_photo.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
class ChatPhoto:
|
||||
def __init__(self,
|
||||
small_file_id: str,
|
||||
big_file_id: str):
|
||||
self.small_file_id = small_file_id
|
||||
self.big_file_id = big_file_id
|
||||
Loading…
Reference in a new issue