From 345da2fccdfd6ccb0269c27f96a3aff83b4dcf5f Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Fri, 9 Mar 2018 14:47:12 +0100 Subject: [PATCH] Add UserProfilePhotos type --- pyrogram/client/types/user_profile_photos.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 pyrogram/client/types/user_profile_photos.py 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