Added \TgBotLib\Abstracts > StickerType

This commit is contained in:
Netkas 2023-02-14 13:08:16 -05:00
parent 9ca2b62283
commit 4fbe285104

View file

@ -0,0 +1,12 @@
<?php
namespace TgBotLib\Abstracts;
abstract class StickerType
{
const Regular = 'regular';
const Mask = 'mask';
const CustomEmoji = 'custom_emoji';
}