<?php
namespace App\Entity;
use App\Repository\TitlesMembersRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=TitlesMembersRepository::class)
*/
class TitlesMembers
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $titre;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $is_deleted;
public function getId(): ?int
{
return $this->id;
}
public function getTitre(): ?string
{
return $this->titre;
}
public function setTitre(?string $titre): self
{
$this->titre = $titre;
return $this;
}
public function isIsDeleted(): ?bool
{
return $this->is_deleted;
}
public function setIsDeleted(bool $is_deleted): self
{
$this->is_deleted = $is_deleted;
return $this;
}
}