<?php
namespace App\Domain\Entity\Translation;
use App\Domain\Entity\Media;
use Locastic\ApiPlatformTranslationBundle\Model\AbstractTranslation;
/**
* Class PaywallTranslation
* @package App\Domain\Entity\Translation
*/
class PaywallTranslation extends AbstractTranslation
{
protected ?int $id = null;
public string $description;
public string $promoStickerText;
public ?Media $picture = null;
public ?bool $isActive = false;
/**
* @return string
*/
public function getDescription(): string
{
return $this->description;
}
/**
* @param string $text
*/
public function setDescription(string $text): void
{
$this->description = $text;
}
}