mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-24 17:06:46 +00:00
16 lines
254 B
PHP
16 lines
254 B
PHP
<?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)
|
|
{
|
|
}
|
|
}
|