Added \TgBotLib\Abstracts > InputMediaType

This commit is contained in:
Netkas 2023-02-14 14:33:58 -05:00
parent 46003c317b
commit c4e12fb39c

View file

@ -0,0 +1,12 @@
<?php
namespace TgBotLib\Abstracts;
abstract class InputMediaType
{
const Photo = 'photo';
const Video = 'video';
const Animation = 'animation';
const Audio = 'audio';
const Document = 'document';
}