<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
class JobLink
{
/**
* @var int
*/
private $id;
/**
* @var string
*/
private $url;
/**
* @var string
*/
private $title;
/**
* @var int
*/
private $start;
/**
* @var int
*/
private $end;
/**
* Get id.
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Set url.
*
* @param string $url
*
* @return JobLink
*/
public function setUrl($url)
{
$this->url = $url;
return $this;
}
/**
* Get url.
*
* @return string
*/
public function getUrl()
{
return $this->url;
}
/**
* Set title.
*
* @param string $title
*
* @return JobLink
*/
public function setTitle($title)
{
$this->title = $title;
return $this;
}
/**
* Get title.
*
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* Set start.
*
* @param int $start
*
* @return JobLink
*/
public function setStart($start)
{
$this->start = $start;
return $this;
}
/**
* Get start.
*
* @return int
*/
public function getStart()
{
return $this->start;
}
/**
* Set end.
*
* @param int $end
*
* @return JobLink
*/
public function setEnd($end)
{
$this->end = $end;
return $this;
}
/**
* Get end.
*
* @return int
*/
public function getEnd()
{
return $this->end;
}
/**
* @var string
*/
private $titleFrontend;
/**
* @var string
*/
private $titleBackend;
/**
* Set titleFrontend.
*
* @param string $titleFrontend
*
* @return JobLink
*/
public function setTitleFrontend($titleFrontend)
{
$this->titleFrontend = $titleFrontend;
return $this;
}
/**
* Get titleFrontend.
*
* @return string
*/
public function getTitleFrontend()
{
return $this->titleFrontend;
}
/**
* Set titleBackend.
*
* @param string $titleBackend
*
* @return JobLink
*/
public function setTitleBackend($titleBackend)
{
$this->titleBackend = $titleBackend;
return $this;
}
/**
* Get titleBackend.
*
* @return string
*/
public function getTitleBackend()
{
return $this->titleBackend;
}
}