Files
kupshop/bundles/KupShop/ComponentsBundle/Entity/EditableContent.php
2025-08-02 16:30:27 +02:00

14 lines
231 B
PHP

<?php
namespace KupShop\ComponentsBundle\Entity;
class EditableContent
{
public function __construct(
public ?int $blockId,
public ObjectInfo $objectInfo,
public ?array $blocks = null,
) {
}
}