<?php
namespace App\Domain\Entity\Translation;
use Locastic\ApiPlatformTranslationBundle\Model\AbstractTranslation;
/**
* Class EnumerationTranslation
* @package App\Domain\Entity\Translation
*/
class EnumerationTranslation extends AbstractTranslation
{
public ?int $id;
private ?string $value = null;
/**
* @return string|null
*/
public function getValue(): ?string
{
return $this->value;
}
/**
* @param string|null $value
*/
public function setValue(?string $value): void
{
$this->value = $value;
}
}