| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- declare(strict_types=1);
- namespace Meramo\Chatbotui\Domain\Model;
- /**
- * This file is part of the "Chatbot UI" Extension for TYPO3 CMS.
- *
- * For the full copyright and license information, please read the
- * LICENSE.txt file that was distributed with this source code.
- *
- * (c) 2023 Meramo Developer <develop@meramo.de>, Meramo Verlag GmbH
- */
- /**
- * Chatbot Term Type
- */
- class Type extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
- {
- /**
- * type
- *
- * @var string
- * @TYPO3\CMS\Extbase\Annotation\Validate("NotEmpty")
- */
- protected $type = '';
- /**
- * Returns the type
- *
- * @return string $type
- */
- public function getType()
- {
- return $this->type;
- }
- /**
- * Sets the type
- *
- * @param string $type
- * @return void
- */
- public function setType(string $type)
- {
- $this->type = $type;
- }
- }
|