<?php
declare(strict_types=1);
namespace App\Entity\Otpusk;
use Doctrine\ORM\Mapping as ORM;
use Knp\DoctrineBehaviors\Contract\Entity\TranslationInterface;
use Knp\DoctrineBehaviors\Model\Translatable\TranslationTrait;
/**
* @ORM\Entity
*/
class CountryCharacteristicTranslation implements TranslationInterface
{
use TranslationTrait;
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @ORM\Column(type="string", length=1024, nullable=true)
*/
protected $visa;
/**
* @ORM\Column(type="string", length=1024, nullable=true)
*/
protected $attendance;
public function getId(): ?int
{
return $this->id;
}
public function getVisa(): ?string
{
return $this->visa;
}
public function setVisa(?string $visa): void
{
$this->visa = $visa;
}
public function getAttendance(): ?string
{
return $this->attendance;
}
public function setAttendance(?string $attendance): void
{
$this->attendance = $attendance;
}
}