Url.php 455 B

12345678910111213141516171819202122
  1. <?php
  2. declare(strict_types=1);
  3. namespace Meramo\Chatbotui\Domain\Model;
  4. /**
  5. * This file is part of the "Chatbot UI" Extension for TYPO3 CMS.
  6. *
  7. * For the full copyright and license information, please read the
  8. * LICENSE.txt file that was distributed with this source code.
  9. *
  10. * (c) 2023 Meramo Developer <develop@meramo.de>, Meramo Verlag GmbH
  11. */
  12. /**
  13. * Redirect page Url
  14. */
  15. class Url extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
  16. {
  17. }