<?php
/***********************************************************************
 * this is partial from:
 *  ###BASE_PATH###
 **********************************************************************/


namespace Fixture\BaseExtension\Domain\Model;

class Blob extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{
    protected string $property = '';

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

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

/***********************************************************************
 * this is partial from:
 *  ###EXTEND_PATH###
 **********************************************************************/
    protected int $otherProperty = 0;

    public function getOtherProperty(): int
    {
        return $this->otherProperty;
    }

    public function setOtherProperty(int $otherProperty)
    {
        $this->otherProperty = $otherProperty;
    }


}
#
