Files
2025-08-02 16:30:27 +02:00

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;
}