15 lines
232 B
PHP
15 lines
232 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KupShop\ComponentsBundle\Interfaces;
|
|
|
|
readonly class Photo
|
|
{
|
|
public string $src;
|
|
public int $width;
|
|
public int $height;
|
|
public string $title;
|
|
public ?int $breakpoint;
|
|
}
|