Added \TgBotLib\Objects > Chat

This commit is contained in:
Netkas 2023-02-12 14:58:38 -05:00
parent 1ce6f8549d
commit 55fb583b6c
2 changed files with 558 additions and 0 deletions

View file

@ -0,0 +1,11 @@
<?php
namespace TgBotLib\Abstracts;
abstract class ChatType
{
const Private = 'private';
const Group = 'group';
const Supergroup = 'supergroup';
const Channel = 'channel';
}