<?php
namespace App\Entity;
use App\Repository\TeamsRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=TeamsRepository::class)
*/
class Teams
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $Nom;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $Prenom;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $TitreFr;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $TitreEn;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $Photo;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $Ordre;
public function getId(): ?int
{
return $this->id;
}
public function getNom(): ?string
{
return $this->Nom;
}
public function setNom(?string $Nom): self
{
$this->Nom = $Nom;
return $this;
}
public function getPrenom(): ?string
{
return $this->Prenom;
}
public function setPrenom(?string $Prenom): self
{
$this->Prenom = $Prenom;
return $this;
}
public function getTitreFr(): ?string
{
return $this->TitreFr;
}
public function setTitreFr(?string $TitreFr): self
{
$this->TitreFr = $TitreFr;
return $this;
}
public function getTitreEn(): ?string
{
return $this->TitreEn;
}
public function setTitreEn(?string $TitreEn): self
{
$this->TitreEn = $TitreEn;
return $this;
}
public function getPhoto(): ?string
{
return $this->Photo;
}
public function setPhoto(?string $Photo): self
{
$this->Photo = $Photo;
return $this;
}
public function getOrdre(): ?int
{
return $this->Ordre;
}
public function setOrdre(?int $Ordre): self
{
$this->Ordre = $Ordre;
return $this;
}
}