Added abstract class \TgBotLib\Abstracts > StickerFormat
to represent a sticker format ("static
", "animated
" or "video
")
https://git.n64.cc/nosial/libs/tgbot/-/issues/2
This commit is contained in:
parent
37a136adce
commit
4dc5e9e20d
2 changed files with 11 additions and 0 deletions
10
src/TgBotLib/Abstracts/StickerFormat.php
Normal file
10
src/TgBotLib/Abstracts/StickerFormat.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace TgBotLib\Abstracts;
|
||||
|
||||
abstract class StickerFormat
|
||||
{
|
||||
const Static = 'static';
|
||||
const Animated = 'animated';
|
||||
const Video = 'video';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue