<?php
namespace App\Entity;
use App\Repository\AdressesRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=AdressesRepository::class)
*/
class Adresses
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $Nom;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $Texte1Fr;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $Texte1En;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $Texte2Fr;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $Texte2En;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $Image;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $Map;
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 getTexte1Fr(): ?string
{
return $this->Texte1Fr;
}
public function setTexte1Fr(?string $Texte1Fr): self
{
$this->Texte1Fr = $Texte1Fr;
return $this;
}
public function getTexte1En(): ?string
{
return $this->Texte1En;
}
public function setTexte1En(?string $Texte1En): self
{
$this->Texte1En = $Texte1En;
return $this;
}
public function getTexte2Fr(): ?string
{
return $this->Texte2Fr;
}
public function setTexte2Fr(?string $Texte2Fr): self
{
$this->Texte2Fr = $Texte2Fr;
return $this;
}
public function getTexte2En(): ?string
{
return $this->Texte2En;
}
public function setTexte2En(?string $Texte2En): self
{
$this->Texte2En = $Texte2En;
return $this;
}
public function getImage(): ?string
{
return $this->Image;
}
public function setImage(?string $Image): self
{
$this->Image = $Image;
return $this;
}
public function getMap(): ?string
{
return $this->Map;
}
public function setMap(?string $Map): self
{
$this->Map = $Map;
return $this;
}
}