Add BackgroundFill objects

This commit is contained in:
netkas 2024-10-01 12:41:28 -04:00
parent eb15ca3ee9
commit 649004a844
5 changed files with 223 additions and 0 deletions

View file

@ -0,0 +1,10 @@
<?php
namespace TgBotLib\Enums\Types;
enum BackgroundFillType : string
{
case SOLID = 'solid';
case GRADIENT = 'gradient';
case FREEFORM_GRADIENT = 'freeform_gradient';
}