mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 20:14:51 +00:00
Add StickerSet type
This commit is contained in:
parent
76b78f6a9e
commit
140f324cd0
1 changed files with 10 additions and 0 deletions
10
pyrogram/client/types/sticker_set.py
Normal file
10
pyrogram/client/types/sticker_set.py
Normal 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
|
||||
Loading…
Reference in a new issue