Added \TgBotLib\Abstracts > InputMediaType
This commit is contained in:
parent
46003c317b
commit
c4e12fb39c
1 changed files with 12 additions and 0 deletions
12
src/TgBotLib/Abstracts/InputMediaType.php
Normal file
12
src/TgBotLib/Abstracts/InputMediaType.php
Normal 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';
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue