*/ declare(strict_types=1); namespace oat\taoQtiTest\models\runner\config\Business\Domain; class Option { /** @var string */ private $id; /** @var bool */ private $isEnabled; public function __construct(string $id, bool $isEnabled) { $this->id = $id; $this->isEnabled = $isEnabled; } public function getId(): string { return $this->id; } public function isEnabled(): bool { return $this->isEnabled; } }