New struct: StickerSet

This commit is contained in:
RustemB 2019-09-03 01:22:16 +05:00
parent 1b97feebf5
commit 1087b0aa2b

View file

@ -0,0 +1,12 @@
use serde::Deserialize;
use crate::core::types::{Sticker};
#[derive(Debug, Deserialize, Hash, PartialEq, Eq)]
pub struct Sticker {
pub name: String,
pub title: String,
pub is_animated: bool,
pub contains_masks: bool,
pub stickers: Vec<Sticker>,
}