<?php
namespace App\Entity;
use App\Repository\TypeHebergementRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=TypeHebergementRepository::class)
*/
class TypeHebergement
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $labels;
/**
* @ORM\Column(type="string", length=100, nullable=true)
*/
private $slugTypeHebergm;
public function getId(): ?int
{
return $this->id;
}
public function getLabels(): ?string
{
return $this->labels;
}
public function setLabels(?string $labels): self
{
$this->labels = $labels;
return $this;
}
public function getSlugTypeHebergm(): ?string
{
return $this->slugTypeHebergm;
}
public function setSlugTypeHebergm(?string $slugTypeHebergm): self
{
$this->slugTypeHebergm = $slugTypeHebergm;
return $this;
}
}