<?php namespace App\Entity; use App\Repository\SeoRepository; use Doctrine\ORM\Mapping as ORM; use Symfony\Component\Uid\Uuid; #[ORM\Entity(repositoryClass: SeoRepository::class)] class Seo { #[ORM\Id] #[ORM\Column(type: 'uuid', unique: true)] private ?Uuid $id = null; #[ORM\Column(length: 255)] private ?string $title = null; #[ORM\Column(length: 255)] private ?string $description = null; #[ORM\Column(length: 255)] private ?string $keywords = null; public function getId(): ?Uuid { return $this->id; } public function getTitle(): ?string { return $this->title; } public function setTitle(string $title): static { $this->title = $title; return $this; } public function getDescription(): ?string { return $this->description; } public function setDescription(string $description): static { $this->description = $description; return $this; } public function getKeywords(): ?string { return $this->keywords; } public function setKeywords(string $keywords): static { $this->keywords = $keywords; return $this; } }