2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-28 12:57:52 +00:00

Add StickerSet type

This commit is contained in:
Dan 2018-03-09 14:47:36 +01:00
parent 76b78f6a9e
commit 140f324cd0

View File

@ -0,0 +1,10 @@
class StickerSet:
def __init__(self,
name: str,
title: str,
contain_masks: bool,
stickers: list):
self.name = name
self.title = title
self.contain_masks = contain_masks
self.stickers = stickers