id; } public function getModelName(): ?string { return $this->modelName; } public function setModelName(string $modelName): self { $this->modelName = $modelName; return $this; } public function getAlternateModelName(): ?string { return $this->alternateModelName; } public function setAlternateModelName(?string $alternateModelName): self { $this->alternateModelName = $alternateModelName; return $this; } public function getCount(): ?int { return $this->count; } public function setCount(int $count): self { $this->count = $count; return $this; } public function getNotes(): ?string { return $this->notes; } public function setNotes(?string $notes): self { $this->notes = $notes; return $this; } public function getBoardBrand(): ?Brand { return $this->boardBrand; } public function setBoardBrand(?Brand $boardBrand): self { $this->boardBrand = $boardBrand; return $this; } public function getGpuBrand(): ?Brand { return $this->gpuBrand; } public function setGpuBrand(?Brand $gpuBrand): self { $this->gpuBrand = $gpuBrand; return $this; } public function getGpuCore(): ?GpuCore { return $this->gpuCore; } public function setGpuCore(?GpuCore $gpuCore): self { $this->gpuCore = $gpuCore; return $this; } }