Files
interblue.pl/modules/x13allegro/classes/php70/Api/Model/Image.php
2024-10-25 14:16:28 +02:00

18 lines
227 B
PHP

<?php
namespace x13allegro\Api\Model;
final class Image
{
/** @var string */
public $url;
/**
* @param string $url
*/
public function __construct($url = '')
{
$this->url = $url;
}
}