Added \TgBotLib\Abstracts > MenuButtonType

This commit is contained in:
Netkas 2023-02-14 14:33:49 -05:00
parent 640210f931
commit 46003c317b

View file

@ -0,0 +1,11 @@
<?php
namespace TgBotLib\Abstracts;
abstract class MenuButtonType
{
const Commands = 'commands';
const WebApp = 'web_app';
const Default = 'default';
}