Added \TgBotLib\Abstracts > PollType

This commit is contained in:
Netkas 2023-02-12 17:36:46 -05:00
parent 492a45a49d
commit 8bfc2e681f

View file

@ -0,0 +1,10 @@
<?php
namespace TgBotLib\Abstracts;
abstract class PollType
{
const Regular = 'regular';
const Quiz = 'quiz';
}