Updated KeyboardButtonPollType

This commit is contained in:
netkas 2024-10-05 00:24:58 -04:00
parent 3746009e4e
commit 63970f807e
2 changed files with 22 additions and 16 deletions

View file

@ -0,0 +1,9 @@
<?php
namespace TgBotLib\Enums\Types;
enum KeyboardButtonPollType : string
{
case QUIZ = 'quiz';
case REGULAR = 'regular';
}