| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?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 Category
- */
- class Category extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
- {
- /**
- * category
- *
- * @var string
- */
- protected $category = '';
- /**
- * Returns the category
- *
- * @return string $category
- */
- public function getCategory()
- {
- return $this->category;
- }
- /**
- * Sets the category
- *
- * @param string $category
- * @return void
- */
- public function setCategory(string $category)
- {
- $this->category = $category;
- }
- }
|