diff --git a/pyrogram/client/types/game.py b/pyrogram/client/types/game.py new file mode 100644 index 00000000..387af3f4 --- /dev/null +++ b/pyrogram/client/types/game.py @@ -0,0 +1,17 @@ +from . import Animation + + +class Game: + def __init__(self, + title: str, + description: str, + photo: list, + text: str = None, + text_entities: list = None, + animation: Animation = None): + self.title = title + self.description = description + self.photo = photo + self.text = text + self.text_entities = text_entities + self.animation = animation