Add BackgroundType objects

This commit is contained in:
netkas 2024-10-01 12:41:37 -04:00
parent 649004a844
commit c2ba0bf68e
6 changed files with 354 additions and 0 deletions

View file

@ -0,0 +1,11 @@
<?php
namespace TgBotLib\Enums\Types;
enum BackgroundType : string
{
case FILL = 'fill';
case WALLPAPER = 'wallpaper';
case PATTERN = 'pattern';
case CHAT_THEME = 'chat_theme';
}