Add message origin classes

This commit is contained in:
netkas 2024-09-30 13:04:23 -04:00
parent 1e3824a87a
commit c4c307fcf1
7 changed files with 343 additions and 0 deletions

View file

@ -0,0 +1,11 @@
<?php
namespace TgBotLib\Enums\Types;
enum MessageOriginType : string
{
case USER = 'user';
case HIDDEN_USER = 'hidden_user';
case CHAT = 'chat';
case CHANNEL = 'channel';
}