<?php
namespace App\Entity;
use App\Repository\MainQuestionRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: MainQuestionRepository::class)]
class MainQuestion
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 500)]
private ?string $content = null;
#[ORM\Column(length: 500, nullable: true)]
private ?string $firstcustomawnser = null;
#[ORM\Column(length: 500, nullable: true)]
private ?string $secondcustomawnser = null;
#[ORM\Column(length: 500, nullable: true)]
private ?string $thirdcustomawnser = null;
public function getId(): ?int
{
return $this->id;
}
public function getContent(): ?string
{
return $this->content;
}
public function setContent(string $content): self
{
$this->content = $content;
return $this;
}
public function getFirstcustomawnser(): ?string
{
return $this->firstcustomawnser;
}
public function setFirstcustomawnser(?string $firstcustomawnser): self
{
$this->firstcustomawnser = $firstcustomawnser;
return $this;
}
public function getSecondcustomawnser(): ?string
{
return $this->secondcustomawnser;
}
public function setSecondcustomawnser(?string $secondcustomawnser): self
{
$this->secondcustomawnser = $secondcustomawnser;
return $this;
}
public function getThirdcustomawnser(): ?string
{
return $this->thirdcustomawnser;
}
public function setThirdcustomawnser(?string $thirdcustomawnser): self
{
$this->thirdcustomawnser = $thirdcustomawnser;
return $this;
}
}