Added \TgBotLib\Abstracts > ChatMemberStatus
This commit is contained in:
parent
a5b7eb08f7
commit
015d9b2de0
1 changed files with 13 additions and 0 deletions
13
src/TgBotLib/Abstracts/ChatMemberStatus.php
Normal file
13
src/TgBotLib/Abstracts/ChatMemberStatus.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace TgBotLib\Abstracts;
|
||||
|
||||
abstract class ChatMemberStatus
|
||||
{
|
||||
const Creator = 'creator';
|
||||
const Administrator = 'administrator';
|
||||
const Member = 'member';
|
||||
const Restricted = 'restricted';
|
||||
const Left = 'left';
|
||||
const Kicked = 'kicked';
|
||||
}
|
Loading…
Add table
Reference in a new issue