<?php
declare(strict_types=1);
namespace LDSCustom\Core\Recipe\Extension;
use Shopware\Core\Framework\Struct\Struct;
class RecipeDataExtension extends Struct
{
public const EXTENSION_NAME = 'lds_recipe_data';
protected $data;
public function getData()
{
return $this->data;
}
}