mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-04-24 20:06:39 +02:00
4647310322
Based on Swiftgram 12.5 (Telegram iOS 12.5). All GLEGram features ported and organized in GLEGram/ folder. Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass, Font Replacement, Fake Profile, Chat Export, Plugin System, and more. See CHANGELOG_12.5.md for full details.
59 lines
1.2 KiB
Plaintext
59 lines
1.2 KiB
Plaintext
namespace TelegramCore;
|
|
|
|
table StickerPackReference_Id {
|
|
id:int64 (id: 0);
|
|
accessHash:int64 (id: 1);
|
|
}
|
|
|
|
table StickerPackReference_Name {
|
|
name:string (id: 0, required);
|
|
}
|
|
|
|
table StickerPackReference_AnimatedEmoji {
|
|
}
|
|
|
|
table StickerPackReference_Dice {
|
|
emoji:string (id: 0, required);
|
|
}
|
|
|
|
table StickerPackReference_AnimatedEmojiAnimations {
|
|
}
|
|
|
|
table StickerPackReference_PremiumGifts {
|
|
}
|
|
|
|
table StickerPackReference_EmojiGenericAnimations {
|
|
}
|
|
|
|
table StickerPackReference_IconStatusEmoji {
|
|
}
|
|
|
|
table StickerPackReference_IconTopicEmoji {
|
|
}
|
|
|
|
table StickerPackReference_IconChannelStatusEmoji {
|
|
}
|
|
|
|
table StickerPackReference_TonGifts {
|
|
}
|
|
|
|
union StickerPackReference_Value {
|
|
StickerPackReference_Id,
|
|
StickerPackReference_Name,
|
|
StickerPackReference_AnimatedEmoji,
|
|
StickerPackReference_Dice,
|
|
StickerPackReference_AnimatedEmojiAnimations,
|
|
StickerPackReference_PremiumGifts,
|
|
StickerPackReference_EmojiGenericAnimations,
|
|
StickerPackReference_IconStatusEmoji,
|
|
StickerPackReference_IconTopicEmoji,
|
|
StickerPackReference_IconChannelStatusEmoji,
|
|
StickerPackReference_TonGifts
|
|
}
|
|
|
|
table StickerPackReference {
|
|
value:StickerPackReference_Value (id: 1, required);
|
|
}
|
|
|
|
root_type StickerPackReference;
|