From 76b78f6a9e438cc340f1b8e6e93515b979551a60 Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Fri, 9 Mar 2018 14:47:22 +0100 Subject: [PATCH] Add ChatPhoto type --- pyrogram/client/types/chat_photo.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 pyrogram/client/types/chat_photo.py diff --git a/pyrogram/client/types/chat_photo.py b/pyrogram/client/types/chat_photo.py new file mode 100644 index 00000000..c2d30bdf --- /dev/null +++ b/pyrogram/client/types/chat_photo.py @@ -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