/***********************************************************************
 * this is partial from:
 *  ###BASE_PATH###
 **********************************************************************/
    protected string $property = '';

    protected \TYPO3\CMS\Extbase\Persistence\ObjectStorage $storage;


    public function getProperty(): string
    {
        return $this->property;
    }

    public function setProperty(string $property)
    {
        $this->property = $property;
    }

    public function getStorage(): \TYPO3\CMS\Extbase\Persistence\ObjectStorage
    {
        return $this->storage;
    }

    public function setStorage(\TYPO3\CMS\Extbase\Persistence\ObjectStorage $storage)
    {
        $this->storage = $storage;
    }

