diff --git a/pyrogram/client/types/user_profile_photos.py b/pyrogram/client/types/user_profile_photos.py new file mode 100644 index 00000000..f22296d2 --- /dev/null +++ b/pyrogram/client/types/user_profile_photos.py @@ -0,0 +1,6 @@ +class UserProfilePhotos: + def __init__(self, + total_count: int, + photos: list): + self.total_count = total_count + self.photos = photos