15 lines
240 B
PHP
15 lines
240 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KupShop\ComponentsBundle\Interfaces;
|
|
|
|
use KupShop\ComponentsBundle\Entity\Thumbnail;
|
|
|
|
class GalleryPhoto
|
|
{
|
|
public Thumbnail $thumbnail;
|
|
public array $variations;
|
|
public string $kind;
|
|
}
|