| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | <?php
/**
 * Created by PhpStorm.
 * User: robin
 * Date: 10/1/16
 * Time: 5:39 PM
 */
namespace App\Dbo;
use Luticate\Utils\Dbo\LuDbo;
class StopsLiteRoutesLiteDbo extends LuDbo
{
    /**
     * @var $_stopId string
     */
    protected $_stopId;
    /**
     * @var $_routeId string
     */
    protected $_routeId;
    /**
     * @return string
     */
    public function getStopId(): string
    {
        return $this->_stopId;
    }
    /**
     * @param string $stopId
     */
    public function setStopId(string $stopId)
    {
        $this->_stopId = $stopId;
    }
    /**
     * @return string
     */
    public function getRouteId(): string
    {
        return $this->_routeId;
    }
    /**
     * @param string $routeId
     */
    public function setRouteId(string $routeId)
    {
        $this->_routeId = $routeId;
    }
}
 |