, 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; } }