123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
- /**
- * Created by PhpStorm.
- * User: robin
- * Date: 9/30/16
- * Time: 11:16 PM
- */
-
- namespace App\Dbo;
-
-
- use Luticate\Utils\Dbo\LuDbo;
-
- class RoutesDbo extends LuDbo
- {
- /**
- * @var $_id string
- */
- protected $_id;
-
- /**
- * @var $_name string
- */
- protected $_name;
-
- /**
- * @var $_bgColor string
- */
- protected $_bgColor;
-
- /**
- * @var $_fgColor string
- */
- protected $_fgColor;
-
- /**
- * @return string
- */
- public function getId(): string
- {
- return $this->_id;
- }
-
- /**
- * @param string $id
- */
- public function setId(string $id)
- {
- $this->_id = $id;
- }
-
- /**
- * @return string
- */
- public function getName(): string
- {
- return $this->_name;
- }
-
- /**
- * @param string $name
- */
- public function setName(string $name)
- {
- $this->_name = $name;
- }
-
- /**
- * @return string
- */
- public function getBgColor(): string
- {
- return $this->_bgColor;
- }
-
- /**
- * @param string $bgColor
- */
- public function setBgColor(string $bgColor)
- {
- $this->_bgColor = $bgColor;
- }
-
- /**
- * @return string
- */
- public function getFgColor(): string
- {
- return $this->_fgColor;
- }
-
- /**
- * @param string $fgColor
- */
- public function setFgColor(string $fgColor)
- {
- $this->_fgColor = $fgColor;
- }
-
-
- }
|