| Current Path : /proc/thread-self/root/var/www/surf/TYPO3/src/surf/Classes/Domain/Model/ |
| Current File : //proc/thread-self/root/var/www/surf/TYPO3/src/surf/Classes/Domain/Model/Store.php |
<?php
declare(strict_types=1);
namespace Torresani\Surf\Domain\Model;
/**
* This file is part of the "Surf" 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 Roberto Torresani <roberto@torresani.eu>
*/
/**
* Store
*/
class Store extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{
/**
* code
*
* @var string
*/
protected $code = null;
/**
* name
*
* @var string
*/
protected $name = null;
/**
* Returns the code
*
* @return string
*/
public function getCode()
{
return $this->code;
}
/**
* Sets the code
*
* @param string $code
* @return void
*/
public function setCode(string $code)
{
$this->code = $code;
}
/**
* Returns the name
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Sets the name
*
* @param string $name
* @return void
*/
public function setName(string $name)
{
$this->name = $name;
}
}