Added abstract class \TgBotLib\Abstracts\ThumbnailMimeType to represent the mime type of thumbnail, photo, or a file / sticker thumbnail.

This commit is contained in:
Netkas 2023-04-23 18:24:42 -04:00
parent 01399f0723
commit 1707a44796
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,10 @@
<?php
namespace TgBotLib\Abstracts;
abstract class ThumbnailMimeType
{
const Jpeg = 'image/jpeg';
const Gif = 'image/gif';
const Mp4 = 'video/mp4';
}