Added abstract class \TgBotLib\Abstracts\ThumbnailMimeType
to represent the mime type of thumbnail, photo, or a file / sticker thumbnail.
This commit is contained in:
parent
01399f0723
commit
1707a44796
2 changed files with 11 additions and 0 deletions
10
src/TgBotLib/Abstracts/ThumbnailMimeType.php
Normal file
10
src/TgBotLib/Abstracts/ThumbnailMimeType.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace TgBotLib\Abstracts;
|
||||
|
||||
abstract class ThumbnailMimeType
|
||||
{
|
||||
const Jpeg = 'image/jpeg';
|
||||
const Gif = 'image/gif';
|
||||
const Mp4 = 'video/mp4';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue