Added Chat

This commit is contained in:
Alex
2025-07-20 14:17:19 +03:00
parent 4661edffdf
commit 07c6bb35b4
7 changed files with 192 additions and 3 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
declare(strict_types=1);
namespace BushlanovDev\MaxMessengerBot\Models;
final readonly class Image extends AbstractModel
{
/**
* @param string $url URL of image.
*/
public function __construct(
public string $url,
) {
}
}