. */ namespace SP\Domain\Plugin\Models; use SP\Domain\Common\Models\ItemWithIdAndNameModel; use SP\Domain\Common\Models\Model; /** * Class PluginModel */ class Plugin extends Model implements ItemWithIdAndNameModel { protected ?int $id = null; protected ?string $name = null; protected ?string $data = null; protected ?bool $enabled = null; protected ?string $versionLevel = null; public function getId(): ?int { return $this->id; } public function getName(): ?string { return $this->name; } public function getData(): ?string { return $this->data; } public function getEnabled(): ?bool { return $this->enabled; } public function getVersionLevel(): ?string { return $this->versionLevel; } }