mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-03 05:54:51 +00:00
Add UserProfilePhotos type
This commit is contained in:
parent
59f1fd9ee6
commit
345da2fccd
1 changed files with 6 additions and 0 deletions
6
pyrogram/client/types/user_profile_photos.py
Normal file
6
pyrogram/client/types/user_profile_photos.py
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
class UserProfilePhotos:
|
||||||
|
def __init__(self,
|
||||||
|
total_count: int,
|
||||||
|
photos: list):
|
||||||
|
self.total_count = total_count
|
||||||
|
self.photos = photos
|
||||||
Loading…
Reference in a new issue